- or download this
my($value) = map { defined() ? $_ : 1 } getConfigValue( "use_foo" );
- or download this
my $value = do { defined(local $_ = getConfigValue( "use_foo" )) ? $_
+: 1 };
- or download this
sub default {
my $v = shift;
...
}
my $value = default(getConfigValue( "use_foo" ), 1);