aboutsummaryrefslogtreecommitdiff
path: root/exercises/025_errors5.zig
diff options
context:
space:
mode:
authorDave Gauer <dave@ratfactor.com>2021-04-04 16:23:27 -0400
committerDave Gauer <dave@ratfactor.com>2021-04-04 16:29:28 -0400
commitbed01210e0fc2b3d84741c3a4731be73e1cec786 (patch)
tree0faca74923dab4108541074695c5645d32104ca6 /exercises/025_errors5.zig
parenta7e4c043999eb120f0b6be5a4e01793a02f1e676 (diff)
downloadziglings-bed01210e0fc2b3d84741c3a4731be73e1cec786.tar.gz
ziglings-bed01210e0fc2b3d84741c3a4731be73e1cec786.tar.bz2
ziglings-bed01210e0fc2b3d84741c3a4731be73e1cec786.tar.xz
ziglings-bed01210e0fc2b3d84741c3a4731be73e1cec786.zip
Normalized exercise output, answers (#41)
1. All exercises should print a trailing \n 2. The build script should always show you _exactly_ what it's looking for when you get it wrong. Therefore, .output should be set to the exact expected output.
Diffstat (limited to 'exercises/025_errors5.zig')
-rw-r--r--exercises/025_errors5.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/025_errors5.zig b/exercises/025_errors5.zig
index 5119dcf..8739e4a 100644
--- a/exercises/025_errors5.zig
+++ b/exercises/025_errors5.zig
@@ -19,7 +19,7 @@ pub fn main() void {
var b: u32 = addFive(14) catch 0;
var c: u32 = addFive(4) catch 0;
- std.debug.print("a={}, b={}, c={}", .{ a, b, c });
+ std.debug.print("a={}, b={}, c={}\n", .{ a, b, c });
}
fn addFive(n: u32) MyNumberError!u32 {