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

17 lines
391 B
Markdown

---
title: fmt.Println
description: Prints the default representation of the given argument using the standard `fmt.Print` function and enforces a line break.
categories: []
keywords: []
params:
functions_and_methods:
aliases: [println]
returnType: string
signatures: [fmt.Println INPUT]
aliases: [/functions/println]
---
```go-html-template
{{ println "foo" }} → foo\n
```