mirror of
https://codeberg.org/andyscott/ziglings.git
synced 2024-11-08 11:20:46 -05:00
Merge branch 'main' of github.com:ratfactor/ziglings into main
This commit is contained in:
commit
7ef800c1bf
2 changed files with 2 additions and 2 deletions
|
@ -32,7 +32,7 @@
|
|||
// with the "dot syntax", the instance will be automatically
|
||||
// passed as the "self" parameter:
|
||||
//
|
||||
// const my_bar = Bar{ .number = 2000 };
|
||||
// var my_bar = Bar{ .number = 2000 };
|
||||
// my_bar.printMe(); // prints "2000"
|
||||
//
|
||||
// Okay, you're armed.
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue