Tile - Loops - Continue – Ylands
Jump to navigation
Jump to search
(Created page with " ---- {{Ylands scripting navbox}}") |
No edit summary |
||
Line 1: | Line 1: | ||
[[Image:Ylands_Tile_-_Break.png]] | |||
*The '''break''' instruction will immoderately '''end''' the '''loop''' and continues executing the code after the loop (if any). | |||
[[Image:Ylands_Tile_-_Continue.png]] | |||
*The '''continue''' instruction will '''end''' current '''iteration''' and continues with the next iteration in the loop. | |||
---- | ---- | ||
{{Ylands scripting navbox}} | {{Ylands scripting navbox}} |
Revision as of 16:17, 12 December 2018
- The break instruction will immoderately end the loop and continues executing the code after the loop (if any).
- The continue instruction will end current iteration and continues with the next iteration in the loop.