aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises/14_while4.zig
diff options
context:
space:
mode:
authorDave Gauer <ratfactor@gmail.com>2021-02-15 19:32:00 -0500
committerGitHub <noreply@github.com>2021-02-15 19:32:00 -0500
commita2b6b68a255c2d050e4f53a5082c38ec810c1b24 (patch)
tree45f2eba30d72f43df60cd9b053ebaea5dfe11f18 /exercises/14_while4.zig
parent882a6b6198148673ec97c6e38443f8e2a6a6b576 (diff)
parentbbe93b1f12ae60258a6322e8ec2212fd072b777a (diff)
Merge pull request #22 from quexxon/apply-zig-fmt
Apply `zig fmt` to exercises and generate remaining patch files
Diffstat (limited to 'exercises/14_while4.zig')
-rw-r--r--exercises/14_while4.zig8
1 files changed, 4 insertions, 4 deletions
diff --git a/exercises/14_while4.zig b/exercises/14_while4.zig
index a28b9a9..7b2714e 100644
--- a/exercises/14_while4.zig
+++ b/exercises/14_while4.zig
@@ -1,9 +1,9 @@
//
// You can force a loop to exit immediately with a "break" statement:
//
-// while (condition) : (continue expression){
+// while (condition) : (continue expression) {
//
-// if(other condition) break;
+// if (other condition) break;
//
// }
//
@@ -17,8 +17,8 @@ pub fn main() void {
// Oh dear! This while loop will go forever!?
// Please fix this so the print statement below gives the desired output.
- while (true) : (n+=1) {
- if(???) ???;
+ while (true) : (n += 1) {
+ if (???) ???;
}
// Result: we want n=4