Gopher
FUNCTIONS

slice

Creates a slice (array) of all passed arguments.

Syntax

slice ITEM...

One use case is the concatenation of elements in combination with the delimit function :

slice.html

{{ delimit (slice "foo" "bar" "buzz") ", " }}
<!-- returns the string "foo, bar, buzz" -->