anglais/examples/chars.ang
Neemek ca0031431d
All checks were successful
/ test (push) Successful in 47s
more examples
2026-07-15 21:50:23 +02:00

15 lines
174 B
Text

MAX_WIDTH := 16
print(" ")
w := 1
n := 0x21
while n < 0xA0 {
print(char(n))
n = n + 1
w = w + 1
if w >= MAX_WIDTH {
write("")
w = 0
}
}