mirror of
https://github.com/irmen/prog8.git
synced 2024-11-27 03:50:27 +00:00
12 lines
153 B
Lua
12 lines
153 B
Lua
%import textio
|
|
|
|
main {
|
|
sub start() {
|
|
str key = "test"
|
|
txt.print(":")
|
|
if key != ":" {
|
|
cx16.r0++
|
|
}
|
|
}
|
|
}
|