Turns off code execution to insert comments. Following lines won't be executed until the next RUN statement.
For a short comment or an end-of-line remark, you can use the simplified version (apostrophe).
Source print "A" print "B"' simple note ' print "C" print "D" rem print "E" print "F" run print "G"Execution A B D G
