Does the alias operator, C<< -> >>, work for C<if> blocks too? if $a * $b / $c + $d -> $abcd { ... } Where $abcd would be lexically scoped to the if block and else block, if defined. I expect it could be used with any block statement, since Apoc 4 demonstrates it with for, grep, loop, and given.
Thanks, cd