Re: Apoc4: Block scoping

2002-01-23 Thread Larry Wall
Chris Dale writes: : Does the alias operator, C<< -> >>, work for C 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

Apoc4: Block scoping

2002-01-23 Thread Chris Dale
Does the alias operator, C<< -> >>, work for C 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, g