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