Help for this page

Select Code to Download


  1. or download this
    # test.pl
    #!/usr/bin/perl
    ...
    my $perl = "a.pl";
    
    $perl->(10,20);
    
  2. or download this
    # add.pl
    #!/usr/bin/perl
    ...
        my ($a , $b) = @_;
        return 0;
    };