Tile - Loop For Each Array – Ylands
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 10: | Line 10: | ||
---- | ---- | ||
{{Ylands scripting navbox}} | {{Ylands scripting navbox}} | ||
{{DEFAULTSORT:{{#sub:{{PAGENAME}}|14}}}} | |||
[[Category: Instructions]] | |||
[[Category: Ylands 0.10]] | [[Category: Ylands 0.10]] | ||
Revision as of 13:36, 3 January 2019
- For each loop will iterate trough all the members of selected array and execute given sequence for each separately.
- Value of currently iterated members is returned as item and can be used as local variable in instructions inside the loop.
- It is possible to use break instruction to jump out of the loop.
Notes
- See also: Break / Continue.