---
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
```
