> The use case here is
>
> do { .foo for @bar } if $baz;
>
> But I guess you can always "protect" it with a parens:
>
> (do { .foo for @bar }) if $baz;
Or just:
if $baz { .foo for @bar }
or even:
@barĀ».foo if $baz;
;-)
Damian
Thread Previous
|
Thread Next