mirror of
https://github.com/irmen/prog8.git
synced 2024-11-29 01:49:22 +00:00
19 lines
283 B
Lua
19 lines
283 B
Lua
%import c64utils
|
|
%import c64flt
|
|
%zeropage basicsafe
|
|
%option enable_floats
|
|
|
|
~ main {
|
|
|
|
sub start() {
|
|
str bla = "asfasd" + "zzz"
|
|
str bla2 = "sdfsdf" * 4
|
|
|
|
c64scr.print(bla)
|
|
c64.CHROUT('\n')
|
|
c64scr.print(bla2)
|
|
c64.CHROUT('\n')
|
|
}
|
|
|
|
}
|