summaryrefslogtreecommitdiff
path: root/patches/patches/095_interfaces.patch
blob: cb5fd62335b4b0b7db7160fde6336f8b578d6971 (plain)
1
2
3
4
5
6
7
8
9
10
11
--- exercises/095_interfaces.zig	2025-08-15 15:17:57.839348063 +0200
+++ answers/095_interfaces.zig	2026-04-03 13:09:13.722917764 +0200
@@ -106,7 +106,7 @@
     for (my_insects) |insect| {
         // Almost done! We want to print() each insect with a
         // single method call here.
-        ???
+        insect.print();
     }
 }