Help for this page
sub my_find_or_create { # ... ... # ... return $new_result; }
return $x if (defined (my $x=foo())); # or defined (my $x = foo()) && return $x;
if (defined (my $x=foo())) { return $x }