<@U2H3SABQF> What? Do you mean something like `a!!...
# random
k
@elect What? Do you mean something like
a!! + b
? Did that ever not work?
e
a!![0]
k
And did that ever not work? Did you have to do
(a!!)[0]
in the past?
e
no, you had to
a!!.get(0)
k
Really? The one with the parentheses didn't work either?
e
no, the one with the parentheses was the only working
k
Right but the
(a!!)[0]
.
e
ah yeah, sorry
v
a?.[0]
doesn't work, so we do
a?.get(0)