This commit is contained in:
mitteneer 2024-07-21 23:09:03 -04:00
parent 68bb75644b
commit 28dc209134
14 changed files with 41 additions and 35 deletions

View file

@ -54,7 +54,7 @@ fn visitElephants(first_elephant: *Elephant) void {
// This gets the next elephant or stops:
// which method do we want here?
e = if (e.hasTail()) e.??? else break;
e = if (e.hasTail()) e.getTail() else break;
}
}