Help for this page

Select Code to Download


  1. or download this
    my $foo_is_ready = (foo1 && foo2)
                    || (foo3 && bar1 && baz1);
    ...
    if ($foo_is_ready) {
        ...
    }
    
  2. or download this
    my $first_foo = foo1 && foo2;
    my $second_foo = foo3 && bar1 && baz1;
    ...
    if ($foo_is_ready) {
        ...
    }