prog8/examples/test.p8

19 lines
160 B
Plaintext
Raw Normal View History

%import c64utils
2019-01-12 17:11:36 +00:00
%import c64flt
2019-01-02 22:32:41 +00:00
~ main {
2019-01-01 20:47:19 +00:00
2019-01-05 17:02:17 +00:00
sub start() {
2019-01-17 01:25:52 +00:00
str s = "hello"
byte[4] ba
2019-01-16 22:56:50 +00:00
2019-01-17 01:25:52 +00:00
float x = 33+s
x = 33+ba
2019-01-15 23:28:30 +00:00
}
2019-01-02 22:32:41 +00:00
}
2019-01-12 17:11:36 +00:00