Fix std_test.reid

This commit is contained in:
Sofia 2025-07-23 15:35:50 +03:00
parent 8b79959288
commit bd356f11db

View File

@ -1,11 +1,12 @@
import std::from_str;
import std::print; import std::print;
import std::int_div; import std::int_div;
fn main() -> i32 { fn main() -> i32 {
let hello = "hello world"; let hello = from_str("hello world");
print(hello); print(&hello);
return int_div(15, 5).quotient; return int_div(15, 5).quotient;
} }