Rem: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
Brendon (talk | contribs)
Created page with "REM ''remarks'' '''remarks'' '''Description''' REM is used to include remarks, or comments, as text which is never executed, in a program. The optional component, ''remarks..."
 
Brendon (talk | contribs)
No edit summary
Line 1: Line 1:
REM ''remarks''
Rem ''remarks''


'''remarks''
'''remarks''


'''Description'''
== Description ==


REM is used to include remarks, or comments, as text which is never executed, in a program. The optional component, ''remarks'', is any text. If used as the last of multiple statements on a single line, REM must be separated from the previous statement by a colon (:). The apostrophe (') synonym is similar to using REM, but no space is required between the apostrophe and the remarks, and no separating colon is needed on multi-statement lines.
Rem is used to include remarks, or comments, as text which is never executed, in a program. The optional component, ''remarks'', is any text. If used as the last of multiple statements on a single line, REM must be separated from the previous statement by a colon (:). The apostrophe (') synonym is similar to using REM, but no space is required between the apostrophe and the remarks, and no separating colon is needed on multi-statement lines.


'''Example'''
== Example ==


<pre>
<pre>
REM REM Example
Rem Rem Example
REM This example does absolutely nothing
Rem This example does absolutely nothing
'It doesn't even have a single line of
'It doesn't even have a single line of
'executable code
'executable code
</pre>
</pre>


'''Output'''
== Output ==


<pre>
<pre>


</pre>
</pre>
[[Category:Language Reference]]

Revision as of 02:51, 17 August 2012

Rem remarks

'remarks

Description

Rem is used to include remarks, or comments, as text which is never executed, in a program. The optional component, remarks, is any text. If used as the last of multiple statements on a single line, REM must be separated from the previous statement by a colon (:). The apostrophe (') synonym is similar to using REM, but no space is required between the apostrophe and the remarks, and no separating colon is needed on multi-statement lines.

Example

Rem Rem Example
Rem This example does absolutely nothing
'It doesn't even have a single line of
'executable code

Output