13 lines
145 B
Plaintext
13 lines
145 B
Plaintext
|
|
import std::print;
|
|
import std::intdiv;
|
|
|
|
fn main() -> i32 {
|
|
let hello = "hello world";
|
|
|
|
|
|
print(hello);
|
|
|
|
return intdiv(10, 5).quot;
|
|
}
|