What does this code snippet do?
func funcName(para int){}
_ = funcName
first line define a function, but what does the second line?
I know many situations in which underscore assign to object, what about a function?
Here is an example from the etcd GitHub repository: link