hugo/docs/content/en/functions/fmt/Print.md
2023-10-20 09:43:56 +02:00

527 B

title linkTitle description categories keywords menu function relatedFunctions aliases
fmt.Print print Prints the default representation of the given arguments using the standard `fmt.Print` function.
functions
docs
parent
functions
aliases returnType signatures
print
string
fmt.Print INPUT
fmt.Print
fmt.Printf
fmt.Println
/functions/print
{{ print "foo" }} → "foo"
{{ print "foo" "bar" }} → "foobar"
{{ print (slice 1 2 3) }} → [1 2 3]