diff options
| author | Dave Gauer <[email protected]> | 2021-06-30 19:28:27 -0400 |
|---|---|---|
| committer | Dave Gauer <[email protected]> | 2021-06-30 19:28:27 -0400 |
| commit | 76287cad45b8db6db6a296168e8112b22c0d3f59 (patch) | |
| tree | 8150d7a7cb60d848a85f8874d5706a567a78c241 /exercises | |
| parent | 290ba908ec39c38fe4b96f4cbfe6eef7158b0f20 (diff) | |
| download | ziglings-76287cad45b8db6db6a296168e8112b22c0d3f59.tar.xz ziglings-76287cad45b8db6db6a296168e8112b22c0d3f59.zip | |
no unused method params
Diffstat (limited to 'exercises')
| -rw-r--r-- | exercises/070_comptime5.zig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/exercises/070_comptime5.zig b/exercises/070_comptime5.zig index 89367bd..714bf1c 100644 --- a/exercises/070_comptime5.zig +++ b/exercises/070_comptime5.zig @@ -50,12 +50,16 @@ const RubberDuck = struct { } fn quack(self: RubberDuck) void { + // Assigning an expression to '_' allows us to safely + // "use" the value while also ignoring it. + _ = self; print("\"Squeek!\" ", .{}); } fn listen(self: RubberDuck, dev_talk: []const u8) void { // Listen to developer talk about programming problem. // Silently contemplate problem. Emit helpful sound. + _ = dev_talk; self.quack(); } }; |
