hugo/docs/content/en/functions/fmt/Print.md
2025-04-10 13:04:51 +02:00

427 B

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