Files
l-language/test/programs/10_for_range.l
T

7 lines
85 B
Plaintext

fn main() -> i64 {
for i in 0 to 5 {
print_i64(i);
}
return 0;
}