prog8/compiler/test/fixtures/ast_simple_main.p8

8 lines
86 B
Lua

%zeropage basicsafe
main {
sub start() {
ubyte aa=99
aa++
}
}