mirror of
https://github.com/gohugoio/hugo.git
synced 2025-05-03 01:59:37 +00:00
23 lines
490 B
Markdown
23 lines
490 B
Markdown
---
|
|
title: fmt.Println
|
|
linkTitle: println
|
|
description: Prints the default representation of the given argument using the standard `fmt.Print` function and enforces a linebreak.
|
|
categories: [functions]
|
|
keywords: []
|
|
menu:
|
|
docs:
|
|
parent: functions
|
|
function:
|
|
aliases: [println]
|
|
returnType: string
|
|
signatures: [fmt.Println INPUT]
|
|
relatedFunctions:
|
|
- fmt.Print
|
|
- fmt.Printf
|
|
- fmt.Println
|
|
aliases: [/functions/println]
|
|
---
|
|
|
|
```go-html-template
|
|
{{ println "foo" }} → "foo\n"
|
|
```
|