Hello, World!
Let's learn how to print data to the screen - which is actually the standard output to stdout, using the print, println and fmt.Println functions.
println is a built-in (at runtime) function that may eventually be removed, while the fmt package is in the standard library, which will persist.
println("Hello, World!")
fmt.Println is a function of lib "fmt" a standard Go library, it is very complete and very extensive. It will have several features for output.
fmt.Println("Hello, World!")
For more information about the language, visit the Effective Go website.
If you have any questions, check out the official FAQ by clicking here.