User Guide

Advanced Coding Card Pack (optional)
A star below refers to the “
Advanced Coding Card Pack”.
Advanced
Coding Card
Pack
REPEAT CARDS
Repeat is different to a Loop. A loop loops the code a certain number of times and you
can’t exit the loop. A repeat will continue to repeat forever, or until a true condition is
met.
The code that you want to be repeated goes in between the braces {}
This card is used to end the repeat, it represents the end brace }
After this card you need to add the condition that needs to be met.
Note the open bracket (
This card is used to close the bracket ) and close the repeat sequence.
REPEAT EXAMPLE
33