if (my $result = expensive_function()) { # $result is in scope here } # $result no longer in scope #### if (my $result = expensive_function()) { # $result is in scope here } # $result is also in scope here !!