prog8/examples/test.p8
2023-11-16 22:56:19 +01:00

13 lines
157 B
Lua

%zeropage basicsafe
%import textio
main {
sub start() {
ubyte xx=12
if xx==12
txt.print("gottem")
txt.nl()
}
}