1
0
Fork 0
hugo/docs/content/en/functions/fmt/Print.md

19 lines
427 B
Markdown

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