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

@ -8,17 +8,17 @@
// \\Line One
// \\Line Two
// ;
//
//
// See if you can make this program print some song lyrics.
//
const std = @import("std");
pub fn main() void {
const lyrics =
const lyrics =
Ziggy played guitar
Jamming good with Andrew Kelley
And the Spiders from Mars
;
std.debug.print("{s}\n",.{lyrics});
std.debug.print("{s}\n", .{lyrics});
}