Creatures Wiki
Register
Advertisement

REPS is a CAOS command controlling flow.

Usage[]

REPS n (int) .. REPE

This creates a bounded loop. REPS opens the loop block and REPE closes it again. The loop block is repeated n times, and then execution continues at the point after REPE.

Example[]

Output the factorial of va00:

SETV va01 1
REPS va00
  MULV va01 va00
  SUBV va00 1
REPE
OUTV va01

See also[]

Advertisement