diff options
author | Martin Ashby <martin@ashbysoft.com> | 2022-12-10 23:02:40 +0000 |
---|---|---|
committer | Martin Ashby <martin@ashbysoft.com> | 2022-12-10 23:02:40 +0000 |
commit | 5257941f40554da3f8df074443a4c087dcff7004 (patch) | |
tree | b55af272f52f961f8fa02468861de2c255d8a9e2 /exercises/056_unions2.zig | |
parent | 0e447c7956410a993614f9337d6219e017722443 (diff) | |
download | ziglings-5257941f40554da3f8df074443a4c087dcff7004.tar.gz ziglings-5257941f40554da3f8df074443a4c087dcff7004.tar.bz2 ziglings-5257941f40554da3f8df074443a4c087dcff7004.tar.xz ziglings-5257941f40554da3f8df074443a4c087dcff7004.zip |
25-60 completemain
Diffstat (limited to 'exercises/056_unions2.zig')
-rw-r--r-- | exercises/056_unions2.zig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/exercises/056_unions2.zig b/exercises/056_unions2.zig index e4294db..911ee42 100644 --- a/exercises/056_unions2.zig +++ b/exercises/056_unions2.zig @@ -44,14 +44,14 @@ pub fn main() void { std.debug.print("Insect report! ", .{}); // Could it really be as simple as just passing the union? - printInsect(???); - printInsect(???); + printInsect(ant); + printInsect(bee); std.debug.print("\n", .{}); } fn printInsect(insect: Insect) void { - switch (???) { + switch (insect) { .still_alive => |a| std.debug.print("Ant alive is: {}. ", .{a}), .flowers_visited => |f| std.debug.print("Bee visited {} flowers. ", .{f}), } |