1
0
Fork 0
mirror of https://codeberg.org/andyscott/ziglings.git synced 2025-04-15 05:02:51 -04:00

this means

This commit is contained in:
Roman Frołow 2021-05-13 14:01:54 +02:00 committed by GitHub
parent be279c78f5
commit 4bdf39bfe5

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 {