vgLib.concatenate() is one of a number of functions maintained for compatibility with earlier versions. New code can use the standard EGL operators for these purposes.
vgLib.concatenate(
target CHAR | DBCHAR | MBCHAR | UNICODE inOut,
source CHAR | DBCHAR | MBCHAR | UNICODE in)
returns (result INT)
The following example concatenates two shorter strings:
phrase, ormeme CHAR(7);
result INT;
phrase = "and/ ";
ormeme = "or";
result = vgLib.concatenate(phrase,ormeme);
if (result == 0)
SysLib.writeStdout("***"+phrase+"***"); // phrase = "and/or "
end