Help for this page

Select Code to Download


  1. or download this
    # This initializes $main::foo
    function_one();
    ...
    function_two();
    # This relies on the modified value from function_two
    function_three();
    
  2. or download this
    my $value= function_one();
    function_two(\$value);
    function_three($value);