mirror of
https://codeberg.org/ziglings/exercises.git
synced 2025-08-03 15:15:37 +00:00
9 lines
216 B
Diff
9 lines
216 B
Diff
24c12
|
|
< tail: *Elephant = null, // Hmm... tail needs something...
|
|
---
|
|
> tail: ?*Elephant = null, // <---- make this optional!
|
|
54c42
|
|
< if (e.tail == null) ???;
|
|
---
|
|
> if (e.tail == null) break;
|