Dillon, John [mailto:[EMAIL PROTECTED] asked: > Is there a gobble-di-gook looker-upper for perl. For > instance, if I don't > know what '@_' is saying, as in: > > my($email, $orig_email) = @_;
Look at the perlvar manpage. @_ is the array that has the parameters passed to a function. The above line would assign the first two arguments passed to the function to the two named variables. HTH, Thomas -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]