![]() |
|
We don't bite newbies here... much | |
PerlMonks |
using 'my $var' vs. 'my($var)'by decnartne (Beadle) |
on Oct 26, 2000 at 18:03 UTC ( [id://38605]=perlquestion: print w/replies, xml ) | Need Help?? |
decnartne has asked for the wisdom of the Perl Monks concerning the following question:
i must be missing something... (ever the initiate)
please consider the following snippet:
upon calling read_conf(), i get the die msg: "[ 1 ]: No such file or directory" now, if i change my $conf_file = @_; to: my ($conf_file) = @_; it works fine. what *am* i missing? thanks in advance decnartne ~ entranced
Back to
Seekers of Perl Wisdom
|
|