mirror of
https://github.com/irmen/prog8.git
synced 2025-03-02 07:30:52 +00:00
20 lines
360 B
Lua
20 lines
360 B
Lua
%import textio
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
|
|
sub start() {
|
|
txt.print("hello\n")
|
|
txt.column(3)
|
|
txt.print("hello2\n")
|
|
txt.column(8)
|
|
txt.print("hello3\n")
|
|
txt.column(34)
|
|
txt.print("hello4\n")
|
|
txt.column(1)
|
|
txt.print("hello5\n")
|
|
txt.column(0)
|
|
txt.print("hello6\n")
|
|
}
|
|
}
|