LOTUSSCRIPT 言語


例:CStr 関数
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

関連項目