I am trying to do this:
for myVar in mySeq: myVar.foo = bar mutate(myVar.baz) Run
for myVar in mySeq: myVar.foo = bar mutate(myVar.baz)
However the compiler doesn’t let me assign or mutate myVar members.
Can I make myVar a var or a lent? Or must I use apply instead?