Paul,
I've been working on some examples for Aurora and when looking the the incude files, I didn't see a function
for appending strings (APPEND$ ???).
Will Aurora use only simple string concatenation "+" or am I just overlooking something obvious?
-Doc-
Well there is _strappend in the acommon library
str3 = _strappend(str1, str2);
Which is used internally by +. You can use it directly if you wish.
QuoteWell there is _strappend in the acommon library
Dang it! ...and I didn't even look in there. ::)
-Doc-