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/45_optionals.zig | |
| parent | 97ae27435b3782ddbde69fccc5f40caee5dda2cd (diff) | |
Apply `zig fmt` to exercises
Diffstat (limited to 'exercises/45_optionals.zig')
| -rw-r--r-- | exercises/45_optionals.zig | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/exercises/45_optionals.zig b/exercises/45_optionals.zig index 815ba75..1327e4c 100644 --- a/exercises/45_optionals.zig +++ b/exercises/45_optionals.zig @@ -31,7 +31,7 @@ pub fn main() void { // integer value from deepThought() OR the number 42: var answer: u8 = result; - std.debug.print("The Ultimate Answer: {}.\n",.{answer}); + std.debug.print("The Ultimate Answer: {}.\n", .{answer}); } fn deepThought() ?u8 { @@ -39,7 +39,6 @@ fn deepThought() ?u8 { // But we'll leave this as-is. Sorry Deep Thought. return null; } -// // Blast from the past: // // Optionals are a lot like error union types which can either |
