From 1aa0aa9f2fb2efc70b6caca0ef683c2a5bb27b21 Mon Sep 17 00:00:00 2001 From: Travis CI <> Date: Tue, 4 May 2021 22:00:58 +0000 Subject: [PATCH] Deploy to GitHub Pages: --- control-flow.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/control-flow.html b/control-flow.html index 375751a9..7da671c9 100644 --- a/control-flow.html +++ b/control-flow.html @@ -271,8 +271,8 @@ will immediately jump to the beginning of the next loop iteration (and check the loop conditions).
for (i in [1, 2, 3, 4]) {
- System.print(i) //> 1
- if (i == 2) continue //> 3
+ if (i == 2) continue //> 1
+ System.print(i) //> 3
} //> 4