Go has different functions to output text, primarily in the `fmt` package. `Print`, `Println`, and `Printf` are the most common.
Debugging and displaying information to standard output.
Difference between Println and Printf.
package main
import "fmt"
func main() {
name := "John"
age := 30
fmt.Println("Hello World!") // Adds newline
fmt.Print("No newline here. ")
fmt.Printf("Name: %s, Age: %d\n", name, age) // Formatted
}
Use `%v` in `Printf` to print the default format of any value.