prog8/examples/test.p8
Irmen de Jong 08e052380a comments
2022-02-05 03:14:26 +01:00

14 lines
174 B
Lua

%import textio
main {
sub start() {
word w1 = -10
byte bb = 2
w1 -= bb-1
txt.print_w(w1)
txt.nl()
sys.wait(999)
}
}