Help for this page

Select Code to Download


  1. or download this
    if ( $a ) { 
       print for @b;
    }
    
  2. or download this
    next if !$a;  # Or `return`
    print for @b;
    
  3. or download this
    print @b if $a;