Help for this page

Select Code to Download


  1. or download this
       #!perl
       my $var = ...;
    ...
       sub1();
       sub2();
       exit 0;
    
  2. or download this
       #!perl
       main();
    ...
          sub2(@var);
          exit 0;
        }