LOTUSSCRIPT LANGUAGE


Examples: CStr function
Dim x As Integer
Dim y As Integer
x% = 1
y% = 2

' Use the addition operator +
Print x% + y%                      ' Prints 3

' Use the string concatenation operator +
Print CStr(x%) + CStr(y%)          ' Prints 12

See Also