added a playground example

This commit is contained in:
jian.han 2018-01-25 10:51:40 +10:00
parent 87e8b9e074
commit 067d0b21f4

13
playground/main.go Normal file
View File

@ -0,0 +1,13 @@
package main
func main() {
}
type Dog struct {
Name string
}
func (d *Dog) GetName() string {
return d.Name
}