Apply zig fmt to exercises

This commit is contained in:
Will Clardy 2021-02-15 16:55:44 -05:00
parent e58f155bd6
commit 2f821bd5e8
37 changed files with 152 additions and 144 deletions

View file

@ -17,13 +17,12 @@ const MyNumberError = error{
pub fn main() void {
var a: u32 = addFive(44) catch 0;
var b: u32 = addFive(14) catch 0;
var c: u32 = addFive(4) catch 0;
var c: u32 = addFive(4) catch 0;
std.debug.print("a={}, b={}, c={}", .{a,b,c});
std.debug.print("a={}, b={}, c={}", .{ a, b, c });
}
fn addFive(n: u32) MyNumberError!u32 {
//
// This function needs to return any error which might come back from detect().
// Please use a "try" statement rather than a "catch".
//
@ -37,4 +36,3 @@ fn detect(n: u32) MyNumberError!u32 {
if (n > 20) return MyNumberError.TooBig;
return n;
}