Data update

This commit is contained in:
Ingy döt Net 2024-03-06 22:25:12 -08:00
parent ed705008a8
commit 0df55f9f24
2196 changed files with 32999 additions and 3075 deletions

View file

@ -0,0 +1,6 @@
fun main() {
// Print all single digit odd numbers
for i := 1; i < 10; i += 2 {
println(i)
}
}

View file

@ -1,7 +1,7 @@
public program()
{
for(int i := 2, i <= 8, i += 2 )
for(int i := 2; i <= 8; i += 2 )
{
console.writeLine:i
console.writeLine(i)
}
}

View file

@ -1,4 +1,4 @@
import "/iterate" for Stepped
import "./iterate" for Stepped
// Print odd numbers under 20.
for (i in Stepped.new(1..20, 2)) System.write("%(i) ")