mirror of
https://github.com/godotengine/godot-docs.git
synced 2026-01-04 14:11:02 +03:00
GDScript basics: expand upon continue explanation (#6650)
Co-authored-by: DavidVereb <davidvereb@users.noreply.github.com>
This commit is contained in:
@@ -1082,7 +1082,8 @@ while
|
||||
^^^^^
|
||||
|
||||
Simple loops are created by using ``while`` syntax. Loops can be broken
|
||||
using ``break`` or continued using ``continue``:
|
||||
using ``break`` or continued using ``continue`` (which skips to the next
|
||||
iteration of the loop without executing any further code in the current iteration):
|
||||
|
||||
::
|
||||
|
||||
|
||||
Reference in New Issue
Block a user