Examples: Print statement

Dim a As Integer, b As Integer, c As Integer
a% = 5
b% = 10
c% = 15
Print a%, b%, c%        ' Prints 5  10  15
' LotusScript prints the values of a, b, and c, 
' separating them with tabs and ending the line
' with a newline character.