This commit is contained in:
Adam Millerchip 2021-12-31 01:58:58 +09:00
parent ed0d752825
commit 881b4d1051
1 changed files with 2 additions and 2 deletions

View File

@ -59,8 +59,8 @@ pub fn main() void {
std.debug.print("Insect report! ", .{});
// Oops! We've made a mistake here.
printInsect(ant, AntOrBee.c);
printInsect(bee, AntOrBee.c);
printInsect(ant, AntOrBee.a);
printInsect(bee, AntOrBee.b);
std.debug.print("\n", .{});
}