summaryrefslogtreecommitdiffstatshomepage
path: root/exercises/07_strings2.zig
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/07_strings2.zig')
-rw-r--r--exercises/07_strings2.zig6
1 files changed, 3 insertions, 3 deletions
diff --git a/exercises/07_strings2.zig b/exercises/07_strings2.zig
index f0bbf99..6350be1 100644
--- a/exercises/07_strings2.zig
+++ b/exercises/07_strings2.zig
@@ -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});
}