Add one more failing test credit to @neon

This commit is contained in:
Sofia 2025-07-24 01:43:32 +03:00
parent f7500b886a
commit 5464bba17e

9
examples/for_loops.reid Normal file
View File

@ -0,0 +1,9 @@
import std::print;
fn main() {
for i in 0..1 {
print("Hello!");
}
for i in 0..1 {
print("World!");
}
}