1 2 3 4 5 6 7 8 9 10
use hlvm::function::Fun; fn main() { let mut main = Fun::new() .add_str("hello world!") .println(); main.run(); }