prog8/examples/test.p8
2019-01-17 02:25:52 +01:00

19 lines
160 B
Lua

%import c64utils
%import c64flt
~ main {
sub start() {
str s = "hello"
byte[4] ba
float x = 33+s
x = 33+ba
}
}