prog8/examples/test.p8

19 lines
283 B
Plaintext
Raw Normal View History

2019-07-01 21:41:30 +00:00
%import c64utils
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() {
str bla = "asfasd" + "zzz"
str bla2 = "sdfsdf" * 4
c64scr.print(bla)
2019-07-15 22:08:28 +00:00
c64.CHROUT('\n')
c64scr.print(bla2)
2019-07-15 22:08:28 +00:00
c64.CHROUT('\n')
}
}