summaryrefslogtreecommitdiffstats
path: root/docs/content/en/functions/fmt/Print.md
blob: f1d169cfa5e8326d2c18bde3b48d4988e3d51bda (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
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]
```