2025-08-26 06:25:00 -07:00

18 lines
431 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
{{ println "foo" "bar" }} → foo bar\n
```