fmt.Println
Prints the default representation of the given argument using the standard
fmt.Print
function and enforces a line break.Syntax
fmt.Println INPUT
Returns
string
Alias
println
{{ println "foo" }} → foo\n
{{ println "foo" "bar" }} → foo bar\n