As illustrated below, both fmt.Println() and println() give same output in Go: Hello world!
fmt.Println()
println()
Hello world!
But: how do they differ from each
As for the difference, this is an example.
println() prints a pointer point to the address of function test.
fmt.Println() prints the address of function.