Gopher
FUNCTIONS

print

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

Syntax

print INPUT

See the go doc for additional information.

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