mirror of
https://github.com/irmen/prog8.git
synced 2025-01-28 02:34:01 +00:00
10 lines
102 B
Lua
10 lines
102 B
Lua
%import textio
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
|
|
sub start() {
|
|
txt.print("hello!\n")
|
|
}
|
|
}
|