wip: examples for the edn rendering

This commit is contained in:
🪞👃🪞 2025-01-05 04:25:31 +01:00
parent 433e4df0f2
commit 174a7ee614
9 changed files with 51 additions and 30 deletions

8
edn/examples/edn02.rs Normal file
View file

@ -0,0 +1,8 @@
use tek_edn::*;
const SOURCE: &'static str = include_str!("edn02.edn");
fn main () {
Tui::run(Arc::new(RwLock::new(Demo::new())))?;
Ok(())
}