Skip to content

Instantly share code, notes, and snippets.

@alfianmalik
Created May 24, 2020 16:32
Show Gist options
  • Save alfianmalik/7102b66a084e28948d0ff38afe1d7c83 to your computer and use it in GitHub Desktop.
Save alfianmalik/7102b66a084e28948d0ff38afe1d7c83 to your computer and use it in GitHub Desktop.
package people
import "fmt"
type Person struct {
FirstName string
LastName string
Age int
}
func (p Person) FullName() string {
return fmt.Sprintf("%s %s", p.FirstName, p.LastName)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment