Normalize interrobangs

This commit is contained in:
Dave Gauer 2021-05-09 13:15:53 -04:00
parent de584dcd71
commit 2ad8de5415
3 changed files with 4 additions and 4 deletions

View file

@ -18,7 +18,7 @@ pub fn main() void {
fn printAnimal(animal: u8) void {
std.debug.print("(", .{});
std.debug.print(") ", .{}); // <---- how!?
std.debug.print(") ", .{}); // <---- how?!
if (animal == 'g') {
std.debug.print("Goat", .{});