LOTUSSCRIPT LANGUAGE
' Explicitly declare a variable-length String variable. Dim firstName As String firstName$ = "Mark"
' Explicitly declare a fixed-length String variable. Dim homeState As String * 4 homeState$ = " MA"
' Implicitly declare a variable-length String variable. adStreet$ = "123 Maple St."
Print firstName$ ' Prints "Mark" Print adStreet$; homeState$ ' Prints "123 Maple St. MA"
See Also