Help for this page

Select Code to Download


  1. or download this
    map { s/^-// } @ARGV;
    print join ("\n", @ARGV) . "\n";
    
  2. or download this
    foo
    bar
    
  3. or download this
    my @array = map { s/^-// } @ARGV; 
    print join ("\n", @array) . "\n";
    
  4. or download this
    1
    1