aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises/24_errors4.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/24_errors4.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/24_errors4.zig')
-rw-r--r--exercises/24_errors4.zig13
1 files changed, 7 insertions, 6 deletions
diff --git a/exercises/24_errors4.zig b/exercises/24_errors4.zig
index b60cc2d..560b129 100644
--- a/exercises/24_errors4.zig
+++ b/exercises/24_errors4.zig
@@ -23,9 +23,9 @@ pub fn main() void {
// that makeJustRight() returns a error union (for now).
var a: u32 = makeJustRight(44) catch 0;
var b: u32 = makeJustRight(14) catch 0;
- var c: u32 = makeJustRight(4) catch 0;
+ var c: u32 = makeJustRight(4) catch 0;
- std.debug.print("a={}, b={}, c={}", .{a,b,c});
+ std.debug.print("a={}, b={}, c={}", .{ a, b, c });
}
// In this silly example we've split the responsibility of making
@@ -37,7 +37,9 @@ pub fn main() void {
// detectProblems() Returns the number or an error.
//
fn makeJustRight(n: u32) MyNumberError!u32 {
- return fixTooBig(n) catch |err| { return err; };
+ return fixTooBig(n) catch |err| {
+ return err;
+ };
}
fn fixTooBig(n: u32) MyNumberError!u32 {
@@ -45,14 +47,14 @@ fn fixTooBig(n: u32) MyNumberError!u32 {
if (err == MyNumberError.TooBig) {
return 20;
}
-
+
return err;
};
}
fn fixTooSmall(n: u32) MyNumberError!u32 {
// Oh dear, this is missing a lot! But don't worry, it's nearly
- // identical to fixTooBig() above.
+ // identical to fixTooBig() above.
//
// If we get a TooSmall error, we should return 10.
// If we get any other error, we should return that error.
@@ -65,4 +67,3 @@ fn detectProblems(n: u32) MyNumberError!u32 {
if (n > 20) return MyNumberError.TooBig;
return n;
}
-