aiscript-rs Rust implementation of AiScript Example use aiscript::v0::{Interpreter, Parser}; let script = Parser::default().parse("<: 'Hello, world!'")?; let interpreter = Interpreter::builder().out_sync(|v| println!("{v}")).build(); interpreter.exec(script).await?;