mirror of
https://codeberg.org/andyscott/ziglings.git
synced 2024-11-08 11:20:46 -05:00
Adding traditional program debugging capability to RubberDuck
This commit is contained in:
parent
0ec635fa56
commit
647f461943
2 changed files with 7 additions and 1 deletions
|
@ -52,6 +52,12 @@ const RubberDuck = struct {
|
|||
fn quack(self: RubberDuck) void {
|
||||
print("\"Squeek!\" ", .{});
|
||||
}
|
||||
|
||||
fn listen(self: RubberDuck, dev_talk: []const u8) void {
|
||||
// Listen to developer talk about programming problem.
|
||||
// Silently contemplate problem. Emit helpful sound.
|
||||
self.quack();
|
||||
}
|
||||
};
|
||||
|
||||
const Duct = struct {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
116,117c116,117
|
||||
122,123c122,123
|
||||
< const walks_like_duck = ???;
|
||||
< const quacks_like_duck = ???;
|
||||
---
|
||||
|
|
Loading…
Reference in a new issue