- or download this
open FOO, '<', $foo
|| die "Could not read $foo: $!\n";
- or download this
if( $foo->is_ready() and $foo->needs_munging() ) {
$status = $foo->munge();
} else {
$status = $foo->status();
}
- or download this
$status = $foo->is_ready() and $foo->needs_munging()
? $foo->munge() : $foo->status();