reid-llvm/reid_src/hello_world.reid
2025-07-22 20:07:42 +03:00

15 lines
221 B
Plaintext

import std::print;
import std::from_str;
import std::add_char;
import std::free_string;
fn main() -> i32 {
let mut test = from_str("hello world");
print(&test);
free_string(&mut test);
return 0;
}