aboutsummaryrefslogtreecommitdiff
path: root/doc/docs/de/doc/control-flow/continue.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/docs/de/doc/control-flow/continue.md')
-rw-r--r--doc/docs/de/doc/control-flow/continue.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/docs/de/doc/control-flow/continue.md b/doc/docs/de/doc/control-flow/continue.md
index b000765..a6210d4 100644
--- a/doc/docs/de/doc/control-flow/continue.md
+++ b/doc/docs/de/doc/control-flow/continue.md
@@ -1,6 +1,6 @@
1# Continue 1# Continue
2 2
3A continue statement can be used to skip the current iteration in a loop. 3Eine `continue`-Anweisung überspringt die aktuelle Iteration einer Schleife.
4 4
5```yuescript 5```yuescript
6i = 0 6i = 0
@@ -21,7 +21,7 @@ while i < 10
21 21
22</YueDisplay> 22</YueDisplay>
23 23
24continue can also be used with loop expressions to prevent that iteration from accumulating into the result. This examples filters the array table into just even numbers: 24`continue` kann auch mit Schleifenausdrücken verwendet werden, um zu verhindern, dass diese Iteration in das Ergebnis akkumuliert wird. Dieses Beispiel filtert die Array-Tabelle auf gerade Zahlen:
25 25
26```yuescript 26```yuescript
27my_numbers = [1, 2, 3, 4, 5, 6] 27my_numbers = [1, 2, 3, 4, 5, 6]