7 lines
123 B
Go
7 lines
123 B
Go
|
|
type peelfirst string
|
||
|
|
|
||
|
|
func (f peelfirst) eat() {
|
||
|
|
// peel code goes here
|
||
|
|
fmt.Println("mm, that", f, "was good!")
|
||
|
|
}
|