◄Example► ◄Contents► ◄Index► ◄Back► ────────────────────────────────────────────────────────────────────────────── 'This example shows two equivalent remark statements. 'Note that you must precede a REM statement at the end of a line with 'a colon. DIM Array(23) 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.