The ability to embed quotes in TUPLE!s/PATH!s/CHAIN!s affords some interesting abilities.
It's not always clear what those abilities should actually be. However, one case seemed pretty clear, so I went ahead with it...
>> a: <something>
>> m: to map! []
== &[map! []]
>> m.(a): 304
== 304
>> m.'(a): 1020
== 1020
>> m
== &[map! [
<something> 304
(a) 1020
]]
>> m.'(a)
== 1020
Pretty cool. Note that you can't do this with "literal SET-XXX" because the CHAIN! scans "above" the TUPLE!. So m.(a):
is a CHAIN! of [m.(a) _]
.
If you wanted to actually put (a):
in the map, you can't use this trick. You have to do it the "hard way":
m.('(a):): <whatever>