print

将以下英文翻译为中文:

print

https://gohugo.io/functions/print/

Prints the default representation of the given arguments using the standard fmt.Print function.

语法

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]

另请参阅