``` a = 5 b = [1, 2, 3, 4, $a] ``` Results in: > [1, 2, 3, 4, "$a"] And: ``` b = [1, 2, (1 + 22)] ``` Results in: > [1, 2, [object, object, object]] Same with maps ------ Seems to be the same issue as described in this issue: [Variables are taken as strings when used as values in compound values](https://github.com/fugazi-io/webclient/issues/8). A solution needs to fix both issues
Results in:
And:
Results in:
Same with maps
Seems to be the same issue as described in this issue: Variables are taken as strings when used as values in compound values.
A solution needs to fix both issues