reid-llvm/examples/std_test.reid
2025-07-23 15:35:50 +03:00

13 lines
183 B
Plaintext

import std::from_str;
import std::print;
import std::int_div;
fn main() -> i32 {
let hello = from_str("hello world");
print(&hello);
return int_div(15, 5).quotient;
}