Avisaro Online Documentation - Wiki
Impressum Kontakt Sitemap

REM

Description

REM is the standard BASIC keywords for single-line comments. A line that begins with REM is completely ignored by the compiler.

Example

This example shows the effect of REM. Only 1 and 3 are printed

outmode -2
print 1
REM print 2
print 3

Remarks

You can also use the inverted comma ' to start a comment line.