RosettaCodeData/Task/Loops-Do-while/True-BASIC/loops-do-while.basic

9 lines
90 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
LET i = 0
DO
LET i = i + 1
PRINT i; " ";
LOOP WHILE REMAINDER(i, 6) <> 0
PRINT
END