prog8/examples/test.p8
2021-10-29 16:20:53 +02:00

10 lines
116 B
Lua

main {
sub start() {
ubyte xx
for xx in "abcdef" to "zzz" {
xx++
}
}
}