Explain the meaning of closure in perl.
No Answer is Posted For this Question
Be the First to Post Answer
What is perl programming?
what is the difference between require and use in perl?
write a perl script to find whether a given line of text is starting and ending with same word or not ???
what is Chop & Chomp function does?
What is chomp() operator/function?
What are the arguements we normally use for perl interpreter?
Is perl compiler or interpreter?
What is it meants by '$_'?
Consider the following example #! /bin/perl use strict; sub sample { my @arr=(1,2,3,4); return @arr; } my ($a,$b,$c,$d) = &sample; print "$a\n$b\n$c\n$d\n"; In the above code, How can I get the $c without using the arguments such as $a,$b. I don't want to use any array to get the return values.
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 does localtime() do in perl?
What is the use of -w, -t and strict in Perl?