How do store a 0 terminated string to a program in AXE. I want to do this because I'm making the libraries for fiddle 3.0 and need to be able to run user inputted code. I'm currently thinking that all I have to do is store the code to a program then run the program. That's what I did for fiddle 2.0 and 2.5 so it should work in a similar setting.
I currently have this code:
INPUT() -> A #this is a self written input routine
GetCalc("prgmTEMP",{A-2}r) -> B
Copy(A,B,{A-2}r)
With this code it creates the program "TEMP" but then just write a whole bunch of question marks and jibberish.
Does anyone know what im doing wrong here?