mirror of
https://github.com/godotengine/godot-docs.git
synced 2026-01-05 22:09:56 +03:00
Further explanation of `continue`. (#6642)
* Further explanation of ``continue``. I find this remark quite useful for beginner programmers unused to loops. Co-authored-by: Max Hilbrunner <mhilbrunner@users.noreply.github.com>
This commit is contained in:
committed by
Hugo Locurcio
parent
90105a5d6e
commit
19478d7987
@@ -877,7 +877,7 @@ 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`` (i.e. skipping to the next iteration of the loop without executing any further code in the current iteration):
|
||||
|
||||
::
|
||||
|
||||
|
||||
Reference in New Issue
Block a user