RosettaCodeData/Task/Loops-For-with-a-specified-step/FBSL/loops-for-with-a-specified-step.fbsl
2023-07-01 13:44:08 -04:00

9 lines
144 B
Text

#APPTYPE CONSOLE
DIM n AS INTEGER
FOR n = 2 TO 8 STEP 2
PRINT n;
IF n < 8 THEN PRINT " ";
NEXT
PRINT ", who will we obliterate?"
PAUSE