I\'ve created a FreeMarker sequence in my template:
<#assign x = [\"red\", 16, \"blue\", \"cyan\"]>
How do I add additional values to the
You have to create a new sequence by concatenating x and a sequence containing only the new element:
x
<#assign x = x + [ "green" ] />