prog8/examples/test.p8

28 lines
464 B
Plaintext
Raw Normal View History

2019-07-15 01:57:51 +00:00
%import c64flt
2019-07-01 21:41:30 +00:00
%zeropage basicsafe
2019-07-15 01:57:51 +00:00
%option enable_floats
2019-03-29 01:13:28 +00:00
~ main {
sub start() {
2019-07-28 19:29:49 +00:00
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")
}
2019-07-22 16:58:55 +00:00
}
}