prog8/examples/test.p8
Irmen de Jong 49036abbaf docs
2021-04-04 12:55:29 +02:00

15 lines
189 B
Lua

%import textio
%zeropage basicsafe
main {
sub start() {
ubyte[6] array = [ 1,2,3,
; Comment here
4,5,6 ]
txt.print_ub(len(array))
}
}