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
|
|
|
|
2019-03-19 00:22:26 +00:00
|
|
|
~ main {
|
2019-04-21 01:04:13 +00:00
|
|
|
|
2019-07-15 21:05:04 +00:00
|
|
|
sub start() {
|
2019-07-16 21:34:43 +00:00
|
|
|
|
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
|
|
|
|
|
|
|
}
|
2019-04-11 22:04:15 +00:00
|
|
|
}
|