yasl
yasl copied to clipboard
`using` declaration
Allow writing something like using list = collections.list
, which would be equivalent to let list = collections.list
.
We also allow multiple declarations at once (using collections.list, collections.set, collections.table
), and we allow const
(using const collections.list
).