prog8/examples/test.p8
2019-07-28 21:29:49 +02:00

28 lines
464 B
Lua

%import c64flt
%zeropage basicsafe
%option enable_floats
~ main {
sub start() {
str s1 = "hello"
str s2 = "hello"
str s3 = "hello"
str s4 = "hello"
if true {
c64scr.print("irmen")
c64scr.print("hello")
c64scr.print("hello2")
}
if true {
c64scr.print("irmen")
c64scr.print("hello")
c64scr.print("hello2")
}
}
}