002_std.patch 310 B

1234567891011
  1. --- exercises/002_std.zig 2023-10-03 22:15:22.122241138 +0200
  2. +++ answers/002_std.zig 2023-10-05 20:04:06.849429678 +0200
  3. @@ -11,7 +11,7 @@
  4. // Please complete the import below:
  5. //
  6. -??? = @import("std");
  7. +const std = @import("std");
  8. pub fn main() void {
  9. std.debug.print("Standard Library.\n", .{});