Issue with associative arrays and default values
Why is it not possible to specify an associative array as default value? create = Function( {x}, Associative Array( {{"value", x}} ) );
create(1);
Associative Array(Eval List({ Eval List( {1, create(1)})})); // [1 => ["value" => x]]
Associative Array(Eval List({ Eval List( {1, create(1)})}),2); // [1 => ["value" => x], => 2]
Associative Array(Eval List({Eval List( {1, create(1)})}), create(
...