REM Statement Programming Example This example shows two equivalent remark statements. Note that you must precede a REM statement at the end of a line with a colon. ----- Note ----- This is not a complete program. Do not run this example in its current form. ---------------- FOR I = 1 TO 23 : Array(I) = 1 : NEXT I : REM Initialize the array. FOR I = 1 TO 23 : Array(I) = 1 : NEXT I ' Initialize the array.