- or download this
my $foo = get_foo();
do_something($foo);
- or download this
do_something( get_foo() );
- or download this
my $foo = get_foo();
if ($snargle = 3 && $foo = 2) {
...
# lots of other stuff here...
}
do_something($foo);
- or download this
grep { $_->[2] } @slice_me;