Help for this page

Select Code to Download


  1. or download this
    unless ($option{f} && $option{h}) {
       die "If you use -f, you must also use -h, and vice versa.";
    }
    
  2. or download this
    if ($option{f} && !$option{h}) {
       die "If you use -f, you must also use -h";
    }
    if ($option{h}) { ... }