Help for this page

Select Code to Download


  1. or download this
    A: for(...){
      next A if not my_truthiness( $_ );
      print $a;
    }
    
  2. or download this
    A: for(...){
      unless( my_truthiness( $_ ) ){
    ...
      }
      print $a;
    }
    
  3. or download this
    A: for(...){
      my_truthiness( $_ ) or  next A;
      print $a;
    }
    
  4. or download this
    A: for(...){
      next A unless my_truthiness( $_ );
      print $a;
    }