prog8/examples/test.p8

19 lines
234 B
Plaintext
Raw Normal View History

2023-11-14 18:23:37 +01:00
%import string
%zeropage basicsafe
main {
sub start() {
2023-11-14 18:23:37 +01:00
cat("aaaaa")
}
2023-11-14 18:23:37 +01:00
sub cat(str s1) {
str s2 = "three"
ubyte n=2
2023-11-14 18:23:37 +01:00
; s1[n+1] = s1[2] ; TODO compiler crash
s2[n+1] = s2[2] ; works fine
}
}