This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!
Rem Statement Example
This example illustrates the various forms of the
Rem statement, which is used to include explanatory remarks in a program.
Dim MyStr1, MyStr2
MyStr1 = "Hello": Rem
Comment after a statement separated by a colon.
MyStr2 = "Goodbye" '
This is also a comment; no colon is needed.