We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent afa19f5 commit 50b1e0fCopy full SHA for 50b1e0f
20_struct/03_methods/main.go
@@ -9,6 +9,7 @@ type person struct {
9
}
10
11
func (p person) fullName() string {
12
+ // fullName() // Uncomment this line and see the stack overflow!
13
return p.first + p.last
14
15
0 commit comments