Rem Statement [Runtime] /text/sbasic/shared/03090407.xhp Sun Microsystems, Inc. converted from old format - fpe
Rem statement comments;Rem statement Rem Statement [Runtime] Specifies that a program line is a comment.
Syntax: Rem Text Parameters: Text: Any text that serves as a comment. You can use the single quotation mark instead of the Rem keyword to indicate that the text on a line is comments. This symbol can be inserted directly to the right of the program code, followed by a comment. Example: Sub ExampleMid DIM sVar As String sVar = "Las Vegas" Print Mid(sVar,3,5) REM Returns "s Veg" REM Nothing occurs here end sub