Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Anonyms structs + empty interfaces
package main
import "fmt"
func main() {
s:= struct {
name string
age int
}{
name:"Hello",
age:20,
}
describe(s)
describe([]int{1,3,4})
}
func describe(i interface{}) {
fmt.Println(i)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment