prog8/examples/test.p8
2019-04-12 23:59:26 +02:00

17 lines
222 B
Lua

%zeropage basicsafe
~ main {
sub start() {
ubyte[3] array1
str string1="hello"
uword x = &array1
word sl = len(@( &string1 ))
c64scr.print_w(sl) ; should be 5
}
}