prog8/examples/test.p8
2021-02-10 22:47:49 +01:00

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")
}
}