mirror of
https://github.com/irmen/prog8.git
synced 2024-12-28 12:32:34 +00:00
10 lines
116 B
Lua
10 lines
116 B
Lua
main {
|
|
|
|
sub start() {
|
|
ubyte xx
|
|
for xx in "abcdef" to "zzz" {
|
|
xx++
|
|
}
|
|
}
|
|
}
|