Repeat
Alias:Repeat
, DoXTimes
Output:Unit
Repeat a step a set number of times.
Parameter | Type | Required | Position | Summary |
---|---|---|---|---|
Action | unit | ✔ | 1 | The action to perform repeatedly. |
Times X | int | ✔ | 2 | The 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