Arie is correct CONCAT (short for concatenation) is a standard programming term for "joining" things together and is documented under intrinsic functions in the DMIS 4.0 book.
Examples:
Code
cLabel=ASSIGN('CR',iCount)
cLabel=ASSIGN(iCount,'CR')
cLabel=ASSIGN(cPrefix,iCount,cSuffix)
etc
Keith Morton