-
Notifications
You must be signed in to change notification settings - Fork 0
Repeat Statements
Benedict Albrecht edited this page May 20, 2026
·
4 revisions
The repeat statement matches a pattern zero or more times in succession.
<? ... ?>
A function with a comma-separated parameter list:
<:function:> function <<name>> ( <? <<var>> <| , <||> |> ?> ) { <---> } <:>
| Input | Repetitions |
|---|---|
function myFunc ( ) { } |
0 |
function myFunc ( x ) { } |
1 |
function myFunc ( x , y ) { } |
2 |
function myFunc ( x , y , z ) { } |
3 |
Pattern:
<| , <||> |>inside the repeat provides an optional comma separator between repetitions.
Next: Jump Instructions — Skipping tokens until a target is found.
- Getting Started
- Sign-Up
- Home Screen
- Creating Your First Template
- Template Editor
- Application Navigation
- Syntax Overview
- Workflow: End-to-End
- Workflow: Test with simpleDemo
- Workflow: Build Template from angularTemp
- Demo Repositories
- Template
- Workbench
- GitHub Integration
- GitHub App Installation
- GitHub Repository Setup
- GitHub Re-linking
- Settings
- Overview
- Declarations
- Types
- Scoping