Re: aliasing a function

2005-12-11 Thread JupiterHost.Net
perldoc -f goto I think the goto-&NAME form does exactly what you asked for. Sweet Wiggins, you rock :) thanks -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: aliasing a function

2005-12-11 Thread Wiggins d'Anconia
JupiterHost.Net wrote: Just a mental exercise :) What is the best way to "alias" a function, for instance: you can call it: sub say_it_loud( print @_ ); or use a type glob, etc What I'm trying to figure out is say you wanted to alias a function that is context sensitive? What I mean is s

aliasing a function

2005-12-11 Thread JupiterHost.Net
Just a mental exercise :) What is the best way to "alias" a function, for instance: you can call it: sub say_it_loud( print @_ ); or use a type glob, etc What I'm trying to figure out is say you wanted to alias a function that is context sensitive? What I mean is say I wanted to have a fu