For Loop
class ForLoop( val identifier: Identifier, val expression: Expression, val body: Block) : Statement
Content copied to clipboard
Iterates over a sequence and executes a Block for each element
Constructors
Link copied to clipboard
fun ForLoop( identifier: Identifier, expression: Expression, body: Block)
Content copied to clipboard
Properties
Link copied to clipboard
the name to be given to the constant accessible in the body that holds the element for the current iteration.