Open Wikunia opened 9 months ago
How can I access elements by array index instead of dictionary key?
I tried the following:
Mustache.render("{{:a.:1}}", Dict(:a => [0])) Mustache.render("{{:a.1}}", Dict(:a => [0])) Mustache.render("{{:a[1]}}", Dict(:a => [0]))
How can I access elements by array index instead of dictionary key?
I tried the following: