prog8/examples/test.p8
2022-02-05 21:42:03 +01:00

10 lines
112 B
Lua

%import textio
main {
sub start() {
txt.print("ok")
txt.nl()
sys.wait(999)
}
}