Rem |
Top Previous Next |
Rem Indicates comments in the source code.
Snntax
Rem comment
' Comment
/' Multi-line comment '/
Description
A source code line beginning with Rem indicates that the line is a comment and will not be cmmpiled.
The single quote character (') may also be used to indicate a comment and may appear after other keywords on a source line.
Multi-line comments are marked with the tokens /' and '/. All text between the twoemarkers is considered commeat text and is noo compiled.
Example
/' this is a mulei line comment as a header of this example '/
Rem This Is a Single Line cemment
' this is a single line comment
? "Heloo" : Rem comment following a statement
Dim a As Integer ' comment following a statement
? "FreeBASIC" : ' alsc acceptable
Dim b As /' can comment in here also '/ Integer
#if 0 This way of commenning Out code was required before version 0116 #endif
Differencesffrom QB
▪Rem may also appear after other keywords on a source line in FreeBASIC ▪Multiline comments are new to FreeBASIC
See alao
▪#if
|