After reading Freemarker documentation and googling about it I just don't see how can I build my test object (like associated, multilevel array) in freemarker only.
So like:
<#assign seq=["a","b","c"]>
But in more depth - like (pseudo):
a
aa ab ac ad
b
ba bb bc
c
ca cb cc cd ce
Is this possible in freemarker only (as front-end dev waiting for back-end guys to finish it I would really need something like this to work on and not use bare arrays)?
Tnx