少于1分钟
将以下英文翻译为中文:
https://gohugo.io/functions/print/
Prints the default representation of the given arguments using the standard fmt.Print function.
fmt.Print
print INPUT
See the go doc for additional information.
1 2 3
{{ print "foo" }} → "foo" {{ print "foo" "bar" }} → "foobar" {{ print (slice 1 2 3) }} → [1 2 3]