diff options
| author | Will Clardy <will@quexxon.net> | 2021-02-15 16:55:44 -0500 |
|---|---|---|
| committer | Will Clardy <will@quexxon.net> | 2021-02-15 16:55:44 -0500 |
| commit | 238beb4a2d3c2eacbb21bba03dcfcf1db3ec3dcb (patch) | |
| tree | 4f88d7f715dcd0bc98d20f3b7f70d49f2bdcb408 /exercises/17_quiz2.zig | |
| parent | 97ae27435b3782ddbde69fccc5f40caee5dda2cd (diff) | |
Apply `zig fmt` to exercises
Diffstat (limited to 'exercises/17_quiz2.zig')
| -rw-r--r-- | exercises/17_quiz2.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/exercises/17_quiz2.zig b/exercises/17_quiz2.zig index 339f733..7de7010 100644 --- a/exercises/17_quiz2.zig +++ b/exercises/17_quiz2.zig @@ -19,10 +19,10 @@ function main() void { ??? (i <= stop_at) : (i += 1) { if (i % 3 == 0) std.debug.print("Fizz", .{}); if (i % 5 == 0) std.debug.print("Buzz", .{}); - if ( !(i % 3 == 0) and !(i % 5 == 0) ) { + if (!(i % 3 == 0) and !(i % 5 == 0)) { std.debug.print("{}", .{???}); } std.debug.print(", ", .{}); } - std.debug.print("\n",.{}); + std.debug.print("\n", .{}); } |
