1
0
Fork 0
mirror of https://codeberg.org/ziglings/exercises.git synced 2025-06-08 10:07:01 +09:00

Merge pull request #55 from rofrol/patch-3

this means
This commit is contained in:
Dave Gauer 2021-05-13 11:22:24 -04:00 committed by GitHub
commit ab69eacb3f

View file

@ -17,7 +17,7 @@ const Elephant = struct {
// Elephant tail methods!
pub fn getTail(self: *Elephant) *Elephant {
return self.tail.?; // Remember, this is means "orelse unreachable"
return self.tail.?; // Remember, this means "orelse unreachable"
}
pub fn hasTail(self: *Elephant) bool {