Help for this page

Select Code to Download


  1. or download this
    sub pass{
        my ( $problem1 )= @_; # <-- Your mistake is here
        print "$problem1\n";
    }
    
  2. or download this
    sub pass{
        my ( $self, $problem1 )= @_;
        print "$problem1\n";
    }