diff --git a/20_struct/03_methods/main.go b/20_struct/03_methods/main.go index 88b489ba..5a0763ae 100644 --- a/20_struct/03_methods/main.go +++ b/20_struct/03_methods/main.go @@ -9,6 +9,7 @@ type person struct { } func (p person) fullName() string { + // p.fullName() // Uncomment this line and see the stack overflow! return p.first + p.last }