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. 詳しく見る »
fmt.Erroridf ID FORMAT [INPUT] ⟼ stringLog a suppressible ERROR from a template. 詳しく見る »
fmt.Printf FORMAT [INPUT] ⟼ stringFormats a string using the standard
fmt.Sprintf
function.
詳しく見る »
fmt.Println INPUT ⟼ stringPrints the default representation of the given argument using the standard
fmt.Print
function and enforces a line break.
詳しく見る »
fmt.Warnidf ID FORMAT [INPUT] ⟼ stringLog a suppressible WARNING from a template. 詳しく見る »