reid-llvm/examples/hello_world.reid
2025-07-27 01:20:37 +03:00

9 lines
170 B
Plaintext

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