Rem
Inserts comments into the program.
Parameters
None.
Return Value
None.
Description
This is used to insert comments and explanations in the program.The readability of the program is enhanced with the use of comments.
Everything until the end of the line after Rem is handled as a non-executable comment.
The Rem statement is a non-executable statement.It does not influence the program's execution in any way.
All of the characters and symbols specified in the comment statement are handled as comments.
A single quotation mark (') expresses a comment statement the same as a Rem statement does.
Example
Insert comments into the source code.
Rem Output the judge result of the latest unit
Print UnitJudge(UnitNo-1)