Merge pull request #20 from quexxon/exercise_12_fixes

Exercise 12 fixes
This commit is contained in:
Dave Gauer 2021-02-15 09:58:39 -05:00 committed by GitHub
commit 0d212ecf5a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,17 +1,17 @@
//
// Zig 'while' statements can have an optional 'continue expression'
// which runs every time the while loop continues (either at the
// end of the loop or when an explicit 'continue' is invoked (we'll
// end of the loop or when an explicit 'continue' is invoked - we'll
// try those out next):
//
// while (condition) : (continue expression)
// while (condition) : (continue expression) {
// ...
// }
//
// Example:
//
// var foo = 2;
// while (foo<10) : (foo+=2)
// while (foo<10) : (foo+=2) {
// // Do something with even numbers less than 10...
// }
//