Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to create the subroutine mypush with similar functionality of inbuilt push function, but the below code is not working properly.

    @planets = ('mercury', 'venus', 'earth', 'mars');
    myPush(@planets,"Test");

    sub myPush (\@@) {
         my $ref = shift;
         my @bal = @_;
         print "\@bal :  @bal\nRef : @{$ref}\n";
         #...
    } 
share|improve this question

2 Answers

up vote 11 down vote accepted

At this line:

    myPush(@planets,"Test");

Perl hasn't yet seen the prototype, so it can't apply it. (If you turn on warnings, which you always should, you'll get a message that main::myPush() called too early to check prototype.)

You can either create your subroutine before you use it:

    sub myPush (\@@) {
         my $ref = shift;
         my @bal = @_;
         print "\@bal :  @bal\nRef : @{$ref}\n";
         #...
    }

    @planets = ('mercury', 'venus', 'earth', 'mars');
    myPush(@planets,"Test");

or else at least pre-declare it with its prototype:

    sub myPush (\@@);

    @planets = ('mercury', 'venus', 'earth', 'mars');
    myPush(@planets,"Test");

    sub myPush (\@@) {
         my $ref = shift;
         my @bal = @_;
         print "\@bal :  @bal\nRef : @{$ref}\n";
         #...
    }
share|improve this answer

If you are sure of the functions and their names, you can just put an ampersand before the call:

@planets = ('mercury', 'venus', 'earth', 'mars');
&myPush(@planets,"Test");

sub myPush (\@@) {
     my $ref = shift;
     my @bal = @_;
     print "\@bal :  @bal\nRef : @{$ref}\n";
     #...
} 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.