Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    use warnings;
    ...
    my ($x, $y) = test::test(@gaga);
    
    print "$x\n$y\n";
    
  2. or download this
    package test;
    
    sub test
    ...
           return $tag, $bag
    }
    1;
    
  3. or download this
    napas
    panas
    
  4. or download this
    #!/usr/bin/perl
    use strict;
    use warnings;
    ...
    my ($x, $y) = test(@gaga);    
    
    print "$x\n$y\n";
    
  5. or download this
    package test;
    
             my $tag = $_[0];
    ...
           return $tag, $bag
    
    1;
    
  6. or download this
    napas
    panas
    
  7. or download this
    test.pm did not return a true value at test2.pl line 4.
    BEGIN failed--compilation aborted at test2.pl line 4.