Expand switch example.

This commit is contained in:
Stephen Chung
2021-12-20 15:18:44 +08:00
parent bca9fe53b0
commit 57d7985015
2 changed files with 6 additions and 4 deletions

View File

@@ -11,7 +11,7 @@ for (a, i) in arr {
if a == 3 { break; }
}
//print(a); // <- if you uncomment this line, the script will fail to run
//print(a); // <- if you uncomment this line, the script will fail to compile
// because 'a' is not defined here
for i in range(5, 0, -1) { // runs from 5 down to 1