mirror of
https://github.com/gohugoio/hugo.git
synced 2025-05-04 09:31:46 +03:00
18 lines
427 B
Markdown
18 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]
|
|
```
|