Skip to main content
Version: v0.16.0

Repeat

Alias:Repeat, DoXTimes

Output:Unit

Repeat a step a set number of times.

ParameterTypeRequiredPositionSummary
Actionunit✔1The action to perform repeatedly.
Times
X
int✔2The number of times to perform the action.

Examples​

Example 1​

SCL​

Repeat Action: (Log 1) Times: 3

Expected Logs​

1
1
1

Example 2​

SCL​

DoXTimes (Log 1) X: 3

Expected Logs​

1
1
1