Help for this page

Select Code to Download


  1. or download this
    unless ($expression){
      # do something
    }
    
  2. or download this
    if (not $expression){
     # do something
    }
    
  3. or download this
    while (<$fh>){
     next unless /\S/;
     #
    }
    
  4. or download this
    if (work_to_do($args)){
     # do some work
    }