1.877 / 4.20: Another String Problem
Posted: Thu Nov 20, 2008 1:30 pm
Lib:
Pgm:
First result is x1x as expected, but the second produces only x1...
Code: Select all
ProcedureDLL$ proc(str$)
ProcedureReturn str$
EndProcedure
Code: Select all
s$="x"
s2$=proc(Str(1))
Debug s$+s2$+s$
Debug s$+proc(Str(1))+s$