Code:
iTESTS
det(0)
Alloc(1)→A
1->LT→LS
225→*{A}
While not(getKey(15)
det(5,255) //fill screen white
det(19,0,0) //set text X, Y
det(17,sum(17,°A,°LT,°LS)) // print the character
Pause
End
det(1)
I don't know why this crashes. I should be clearer, code runs once but on the second iteration it fails. I have tried moving things in and out of the loop but it seems that the sum(17 command is not acting as I would expect.
Allocating more memory doesn't work. I have tried everything I can think of. I am working on this to read from a program.
In my actual program I iteratively use
Code:
sum(5,°G,1,1,SLOT) // reading 1 char
det(19,F*8,NLINE*10) // text X, Y
det(17,sum(17,°G,°LT,°LS))
This does not work either.