my ziglings
0

Configure Feed

Select the types of activity you want to include in your feed.

improved report design

Chris Boesch (Apr 3, 2026, 7:28 PM +0200) f6a6798c 7fae6e06

+4 -4
+1 -1
build.zig
··· 1121 1121 .{ 1122 1122 .main_file = "084_interfaces.zig", 1123 1123 .output = 1124 - \\Daily Insect Report: 1124 + \\=== Doctor Zoraptera's Insect Report === 1125 1125 \\Ant is alive. 1126 1126 \\Bee visited 17 flowers. 1127 1127 \\Grasshopper hopped 32 meters.
+1 -1
exercises/084_interfaces.zig
··· 102 102 Insect{ .grasshopper = Grasshopper{ .distance_hopped = 32 } }, 103 103 }; 104 104 105 - std.debug.print("Daily Insect Report:\n", .{}); 105 + std.debug.print("=== Doctor Zoraptera's Insect Report ===\n", .{}); 106 106 for (my_insects) |insect| { 107 107 // Almost done! We want to print() each insect with a 108 108 // single method call here.
+2 -2
patches/patches/084_interfaces.patch
··· 1 - --- exercises/084_interfaces.zig 2025-08-15 15:17:57.839348063 +0200 2 - +++ answers/084_interfaces.zig 2026-04-03 14:27:32.670756488 +0200 1 + --- exercises/084_interfaces.zig 2026-04-03 19:24:51.764327692 +0200 2 + +++ answers/084_interfaces.zig 2026-04-03 19:27:31.552579474 +0200 3 3 @@ -106,7 +106,7 @@ 4 4 for (my_insects) |insect| { 5 5 // Almost done! We want to print() each insect with a