perlvar Questions
2
Solved
I was reading up on perlvar when i came across this -
The status returned by the last pipe close, backtick (`` ) command, successful call to wait() or waitpid(), or from the system() operator. ...
2
I'd like to get the full filename of an included module. Consider this code:
package MyTest;
my $path = join '/', split /::/, __PACKAGE__;
$path .= ".pm";
print "$INC{$path}\n";
1;
$ perl -...
Laocoon asked 23/2, 2010 at 14:15
3
Solved
What is the difference between %INC and @INC in Perl?
1
© 2022 - 2024 — McMap. All rights reserved.