prog8/examples/test.p8

25 lines
680 B
Lua

%import textio ; txt.*
%zeropage basicsafe
main {
sub start() {
txt.print("a")
txt.print("a")
txt.print("bb")
txt.print("bb")
txt.print("\n")
txt.print("\n\n")
; txt.print("hello\n")
; txt.print("hello\n")
; txt.print("hello\n")
; txt.print("hello\n")
; txt.print("hello22\n")
; txt.print("hello22\n")
; txt.print("hello22\n")
; txt.print("hello22\n")
; txt.print("hello666\n")
; txt.print("hello666\n")
; txt.print("hello666\n")
; txt.print("hello666\n")
}
}