Please help
Example:
Text$ = "Hello"
*Text = @Text$ ; *Text store the address of the string in memory
*Pointer.String = @*Text ; *Pointer points on *Text
Debug *Pointer\s ; Display the string living at the address stored in *Pointer (i.e. @Text$)
Code: Select all
Procedure.s getText(*textAddress)
ProcedureReturn *textAddress\s ; <----------------- ERROR
EndProcedure
text.s = "testing text"
Debug getText(@text)