From cc0101392124fca0944dc4447a049ab406aa8a94 Mon Sep 17 00:00:00 2001 From: Dave Gauer Date: Sun, 4 Apr 2021 16:23:27 -0400 Subject: 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. --- exercises/025_errors5.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'exercises/025_errors5.zig') 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 { -- cgit v1.2.3-70-g09d2