Help for this page

Select Code to Download


  1. or download this
    my $first_foo = foo1 && foo2;
    my $second_foo = foo3 && bar1 && baz1;
    my $foo_is_ready = $first_foo || $second_foo;
    
  2. or download this
    if(  foo1 && foo2
    or   foo3 && bar1 && bar2
    ){
    ...
    }
    
  3. or download this
    if(  foo1 && foo2            ## First foo
    or   foo3 && bar1 && bar2    ## Or second foo
    ){
    ...
    }