mirror of
https://github.com/irmen/prog8.git
synced 2025-01-12 19:29:50 +00:00
20 lines
289 B
Lua
20 lines
289 B
Lua
%import textio
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
sub start() {
|
|
byte[] foo = [ 1, 2, ; this comment is ok
|
|
|
|
; but after this comment there's a syntax error
|
|
|
|
|
|
3 ]
|
|
|
|
byte bb
|
|
for bb in foo {
|
|
txt.print_b(bb)
|
|
txt.nl()
|
|
}
|
|
}
|
|
}
|