reid-llvm/reid_src/hello_world.reid

10 lines
86 B
Plaintext

import std::print;
fn main() {
let hello = "hello world";
print(hello);
}