Help for this page

Select Code to Download


  1. or download this
        if (my $result = expensive_function()) {
            # $result is in scope here
        }
        # $result no longer in scope
    
  2. or download this
        if (my $result = expensive_function()) {
            # $result is in scope here
        }
        # $result is also in scope here !!