* Andrew Savige <[EMAIL PROTECTED]> [2005-02-28T04:22:04]
> This function synonym:
> 
> sub run { prun( @_ ) }
> 
> is better implemented as:
> 
> sub run { &prun }

...which, in turn, is better implemented as 

        sub run { goto &prun }

because it will never have to return to &run.  The return value of &prun
will be returned directly.

Or, finally:

        *run = \&prun

which will just make calls to &run invoke &prun directly.

-- 
rjbs

Attachment: pgp66ooVqWZSK.pgp
Description: PGP signature

Reply via email to