007_strings2.patch 461 B

123456789101112131415
  1. --- exercises/007_strings2.zig 2023-10-03 22:15:22.122241138 +0200
  2. +++ answers/007_strings2.zig 2023-10-05 20:04:06.872763449 +0200
  3. @@ -15,9 +15,9 @@
  4. pub fn main() void {
  5. const lyrics =
  6. - Ziggy played guitar
  7. - Jamming good with Andrew Kelley
  8. - And the Spiders from Mars
  9. + \\Ziggy played guitar
  10. + \\Jamming good with Andrew Kelley
  11. + \\And the Spiders from Mars
  12. ;
  13. std.debug.print("{s}\n", .{lyrics});