Fmt functions
Use these functions to print strings within a template or to print messages to the terminal.
Use these functions to print strings within a template or to print messages to the terminal.
fmt.Errorf FORMAT [INPUT] ⟼ stringLog an ERROR from a template. Read More »
fmt.Erroridf ID FORMAT [INPUT] ⟼ stringLog a suppressible ERROR from a template. Read More »
fmt.Print INPUT ⟼ stringPrints the default representation of the given arguments using the standard
fmt.Print
function.
Read More »
fmt.Printf FORMAT [INPUT] ⟼ stringFormats a string using the standard
fmt.Sprintf
function.
Read More »
fmt.Println INPUT ⟼ stringPrints the default representation of the given argument using the standard
fmt.Print
function and enforces a line break.
Read More »
fmt.Warnf FORMAT [INPUT] ⟼ stringLog a WARNING from a template. Read More »
fmt.Warnidf ID FORMAT [INPUT] ⟼ stringLog a suppressible WARNING from a template. Read More »