BASIC Programming/Beginning BASIC/Documentation
Tools
General
Sister projects
In other projects
In Basic, code is documented in one of two ways:
REM statement')Either of these two methods will result in treating the rest of the line as a comment.The interpreter will discard the rest of the line.
As with most forms of code documentation, it needs to be used as programs grow larger and to help identify thepurpose of a given section of code.It is unnecessary to document every individual line, but should give enough information such as the purpose of a given function or why a certain statement may be needed.
CLS10PRINT"Hello World!"20REM This code will display Hello World! to the display.30END
print"Hello World!"'This code will display Hello World! on the screensleepend
This will allow you to create a Remark statement that will not be visible to the user, but will be visible when the code is reviewed.
| Previous:Variables and Data Types | Main:BASIC Programming | Next:Documentation |