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