Closed dgkf closed 3 months ago
This might be a change we revert at some point if we ever want to return lazy list elements, but for now it has the intended behavior.
Like the vector syntax [1, 2, 3], we now have a list syntax primitive (1, 2, 3) which knows to evaluate similar to PrimitiveList.
[1, 2, 3]
(1, 2, 3)
PrimitiveList
This might be a change we revert at some point if we ever want to return lazy list elements, but for now it has the intended behavior.
Like the vector syntax
[1, 2, 3]
, we now have a list syntax primitive(1, 2, 3)
which knows to evaluate similar toPrimitiveList
.