reid-llvm/reid_src/std_test.reid

12 lines
148 B
Plaintext

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