hugo/docs/content/en/functions/print.md
2023-05-22 16:47:07 +02:00

459 B

title description categories menu keywords signature relatedfuncs
print Prints the default representation of the given arguments using the standard `fmt.Print` function.
functions
docs
parent
functions
strings
print INPUT

See the go doc for additional information.

{{ print "foo" }} → "foo"
{{ print "foo" "bar" }} → "foobar"
{{ print (slice 1 2 3) }} → [1 2 3]