blob: 89c74960f5351d84837a976b41823ad4104d402c [file] [log] [blame]
---
page_title: concat - Functions - Configuration Language
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
```
> concat(["a", ""], ["b", "c"])
[
"a",
"",
"b",
"c",
]
```