A library used for formatting output
fmt.Print()
Prints without newline
fmt.Println()
Prints with newline
fmt.Printf()
Prints with format specifiers:
%v
prints the value of the variable%T
prints the type of the variable