reid-llvm/reid_src/hello_world.reid

9 lines
103 B
Plaintext

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