reid-llvm/examples/std_test.reid

13 lines
182 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;
}