prog8/examples/test.p8

10 lines
116 B
Plaintext
Raw Normal View History

main {
2021-10-27 21:48:02 +00:00
sub start() {
ubyte xx
for xx in "abcdef" to "zzz" {
xx++
}
2021-10-27 21:48:02 +00:00
}
}