feat: add daletl types to rust lib

This commit is contained in:
Artemy Egorov 2024-07-28 20:49:55 +03:00
parent 9d8220f726
commit 8464c71a5a
8 changed files with 125 additions and 1 deletions

6
libs/rust/src/main.rs Normal file
View file

@ -0,0 +1,6 @@
use dalet::{Argument, Body, Tag};
fn main() {
let _ = Tag::new(1, Body::Text("I am Heading".to_string()), Argument::Null);
println!("Hello, world!");
}