mirror of
https://github.com/irmen/prog8.git
synced 2024-11-23 07:32:10 +00:00
14 lines
181 B
Lua
14 lines
181 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)
|
|
}
|
|
}
|