Help for this page

Select Code to Download


  1. or download this
    while (my ($key, $value) = each @ARGV)
    {
      print "$value: $key\n"; # The key is the position
    }
    
  2. or download this
    use Data::Dumper;
    print Dumper { %ARGV[0,1,3] };