aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises/14_while4.zig
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/14_while4.zig')
-rw-r--r--exercises/14_while4.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/exercises/14_while4.zig b/exercises/14_while4.zig
index c8dfc2e..7b2714e 100644
--- a/exercises/14_while4.zig
+++ b/exercises/14_while4.zig
@@ -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