http://qs321.pair.com?node_id=1167865


in reply to Re^2: Thoughts on using and, or, and not over && || !? (distinct)
in thread Thoughts on using and, or, and not over && || !?

my $do_munge = $foo->is_ready() and $foo->needs_munging(); return $foo->is_ready() and $foo->needs_munging(); $count += $foo->willing() and $foo->able(); push @passes, $foo->tried() and $foo->success(); $separator = $args->{separator} or ','; skip_if( $not_mocked or $in_prod, sub { test_stuff() } ); LOG "Failure to launch.", because => $!, 'retry?' => $retries_left and + $not_fatal;

- tye