Help for this page

Select Code to Download


  1. or download this
    if ($a) {
      print "a was selected\n";
    }
    
  2. or download this
    my %opts;
    GetOptions(map { ($_ => \$opts{$_}) } "a".."z");
    
    $opts{$_} and print "$_ was selected\n" for "a".."z";