mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-06 11:46:41 +01:00
8 lines
151 B
Rust
8 lines
151 B
Rust
use tek_edn::*;
|
|
|
|
const SOURCE: &'static str = include_str!("edn02.edn");
|
|
|
|
fn main () {
|
|
Tui::run(Arc::new(RwLock::new(Demo::new())))?;
|
|
Ok(())
|
|
}
|