prog8/examples/test.p8
2023-06-27 23:30:37 +02:00

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()
}
}
}