22 lines
357 B
Plaintext
Raw Permalink Normal View History

2020-03-18 18:46:47 -04:00
---
page_title: concat - Functions - Configuration Language
sidebar_title: concat
2020-03-18 18:46:47 -04:00
description: The concat function combines two or more lists into a single list.
---
# `concat` Function
`concat` takes two or more lists and combines them into a single list.
## Examples
```shell-session
2020-03-18 18:46:47 -04:00
> concat(["a", ""], ["b", "c"])
[
"a",
"",
"b",
"c",
]
```