Apply zig fmt to exercises

This commit is contained in:
Will Clardy
2021-02-15 16:55:44 -05:00
parent 97ae27435b
commit 238beb4a2d
37 changed files with 152 additions and 144 deletions

View File

@@ -16,7 +16,7 @@
//
const std = @import("std");
const MyNumberError = error{ TooSmall };
const MyNumberError = error{TooSmall};
pub fn main() void {
var my_number: ??? = 5;
@@ -27,4 +27,3 @@ pub fn main() void {
std.debug.print("I compiled!", .{});
}