What is the difference between having a parenthesis after
module name and without parenthsis after module name??
i.e Package::Module();
and
Package::Module;
Answer / ankur mundhada
Package::Module(); This will throw as error,
I think,the question should be as: What is the difference
between,
Package::MyModule qw(); # FIRST
and
Package::MyModule; # SECOND
# FIRST :- This will not import any subroutine from MyModule.
# SECOND :- This will import all the subroutine from the
MyModule.
| Is This Answer Correct ? | 3 Yes | 0 No |
Explain goto label?
what are the three groups involved in information sharing?
What is perl dbi?
What is the tk module?
What does cgi program store?
What are the logical operators used for small scale operations? Explain them briefly.
What is the difference between die and exit in perl?
what is CPAN?
what is the difference b/w coldfusion MX 6 and Coldfusion MX 7?
How can I implement the function overloading in Perl ? I read about the operator overloading, I do not know how to implement the function overloading. Thanks in advance ?
What are the different types of perl operators?
Explain chop?