reid-llvm/examples/hello_world_harder.reid

17 lines
216 B
Plaintext

import std::print;
import std::String;
fn main() {
let mut test = String::from("hello");
test.push(String::from(" world: "));
test.push_num(175);
print(test);
test.free();
return;
}