221V 1 week ago
parent
commit
1b48aaa6d5
1 changed files with 9 additions and 8 deletions
  1. 9 8
      exercises/007_strings2.zig

+ 9 - 8
exercises/007_strings2.zig

@@ -13,12 +13,13 @@
 //
 //
 const std = @import("std");
 const std = @import("std");
 
 
-pub fn main() void {
-    const lyrics =
-        Ziggy played guitar
-        Jamming good with Andrew Kelley
-        And the Spiders from Mars
-    ;
-
-    std.debug.print("{s}\n", .{lyrics});
+pub fn main() void{
+  const lyrics =
+    \\Ziggy played guitar
+    \\Jamming good with Andrew Kelley
+    \\And the Spiders from Mars
+  ;
+  
+  std.debug.print("{s}\n", .{lyrics});
 }
 }
+