aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises/45_optionals.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/45_optionals.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/45_optionals.zig')
-rw-r--r--exercises/45_optionals.zig3
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