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

@ -1,6 +1,6 @@
repeat
a = random 20
print a
until a = 10
print random 20
a = randint 20
print a
until a = 10
print randint 20
.

View file

@ -2,5 +2,4 @@ for {
val .i = random 0..19
write .i, " "
if .i == 10 { writeln(); break }
write random(0..19), " "
}