blob: b7fe608ff60326ca10730b0ebe8faa03b36ba8bd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
---
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
```
|