mirror of
https://github.com/irmen/prog8.git
synced 2024-11-02 22:04:40 +00:00
11 lines
100 B
Lua
11 lines
100 B
Lua
%import textio
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
|
|
|
|
sub start() {
|
|
txt.print("hello\n")
|
|
}
|
|
}
|