"Bakken, Luke" <[EMAIL PROTECTED]> wrote: > > Hi, > > > > Are there 'aliases' in perl? For example, if I have a Korn > > shell script and > > a function named "increaseCost()", I can do this: "alias > > decreaseCose=increaseCost" (passing a parameter in)..... of > > course this is a > > simplified example of what I want to do, but the point is to make it > > self-documenting. > > > > Maybe what I need is a "reference" ? > > Personally, I've never (directly) used this feature, but here it is: > > use strict; > > sub foo > { > print "Called foo\n"; > } > > *bar = \&foo; > > foo(); > > bar();
Exactly what I am looking for! THANKS!!! -Jeff __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]