Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -Tw
    use strict;
    ...
    print $#ARGV;
    die "where are those args again?\n" unless ($#ARGV > 0);
    exit;
    
  2. or download this
    where are those args again?<br>
    -1