Can we have function pointers in Go?
I was learning about pointers in Go. And managed to write something like: func hello(){ fmt.Println("Hello World") } func main(){ pfunc := hello //pfunc is a pointer to the fu...