Anonyms structs + empty interfaces
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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