mirror of
https://github.com/irmen/prog8.git
synced 2024-12-26 14:29:35 +00:00
10 lines
98 B
Lua
10 lines
98 B
Lua
%import textio
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
|
|
sub start() {
|
|
txt.print("done\n")
|
|
}
|
|
}
|