Help for this page

Select Code to Download


  1. or download this
    while ($_ = $ARGV[0]) {
       SWITCH:
    ...
          /^--?$/o              and do{shift;             ...; last SWITCH
    +};
       }
    }
    
  2. or download this
    PARSE:
    while (@ARGV) {
    ...
          /^--?$/o              and do {             ...; last PARSE };
       }
    }