return ( $stuff, $morestuff, $whatever ) always close F;
I *really* like that keyword.
Though I'd prefer to see it as a block suffix:
sub {
...
return $yadda_yadda;
}
always { close F }
Then you could add it to loops as well, in conjunction with the C<continue>:
while (1) {
... # add to $text in complex ways
}
continue { $text .= "\n"; } # separate with newlines
always { $trycount++ } # count attempts (including last)
Damian
- Re: assign to magic name-of-function variable instead of &... John Porter
- Re: assign to magic name-of-function variable instead of &... Damian Conway
- Re: assign to magic name-of-function variable instead... John Porter
- Re: assign to magic name-of-function variable instead... Damian Conway
- Re: assign to magic name-of-function variable ins... John Porter
- Re: assign to magic name-of-function variable... David L. Nicol
- Re: assign to magic name-of-function variable ins... Glenn Linderman
- Re: assign to magic name-of-function variable... John Porter
- Re: assign to magic name-of-function variable ins... Damian Conway
- Re: assign to magic name-of-function variable... Edward Peschko
- Re: assign to magic name-of-function variable... abigail
- Re: assign to magic name-of-function vari... John Porter
- Re: assign to magic name-of-function vari... Tony Olekshy
- Re: assign to magic name-of-function vari... John Porter
- Re: assign to magic name-of-function vari... Peter Scott
- Re: assign to magic name-of-function vari... John Porter
- Re: assign to magic name-of-function vari... Peter Scott
- Re: assign to magic name-of-function vari... David L. Nicol
- Re: assign to magic name-of-function vari... John Porter
