diff options
Diffstat (limited to 'exercises/44_quiz5.zig')
-rw-r--r-- | exercises/44_quiz5.zig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/exercises/44_quiz5.zig b/exercises/44_quiz5.zig index 6ec0da9..88e0ff7 100644 --- a/exercises/44_quiz5.zig +++ b/exercises/44_quiz5.zig @@ -4,13 +4,13 @@ // // Are holding hands // By holding tails." -// +// // from Holding Hands // by Lenore M. Link -// +// const std = @import("std"); // single quotes -const Elephant = struct{ +const Elephant = struct { letter: u8, tail: *Elephant = undefined, visited: bool = false, |