12 lines
150 B
Plaintext
12 lines
150 B
Plaintext
|
|
import std::print;
|
|
import std::int_div;
|
|
|
|
fn main() -> i32 {
|
|
let hello = "hello world";
|
|
|
|
print(hello);
|
|
|
|
return int_div(15, 5).quotient;
|
|
}
|