prog8/examples/test.p8

12 lines
153 B
Lua

%import textio
main {
sub start() {
str key = "test"
txt.print(":")
if key != ":" {
cx16.r0++
}
}
}