From bd356f11db0c2bb0d9a163cacbdc6adc1766935e Mon Sep 17 00:00:00 2001 From: sofia Date: Wed, 23 Jul 2025 15:35:50 +0300 Subject: [PATCH] Fix std_test.reid --- examples/std_test.reid | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/examples/std_test.reid b/examples/std_test.reid index 6bfbe66..1cc60a8 100644 --- a/examples/std_test.reid +++ b/examples/std_test.reid @@ -1,11 +1,12 @@ +import std::from_str; import std::print; import std::int_div; fn main() -> i32 { - let hello = "hello world"; + let hello = from_str("hello world"); - print(hello); + print(&hello); return int_div(15, 5).quotient; }