Help for this page
# This initializes $main::foo function_one(); ... function_two(); # This relies on the modified value from function_two function_three();
my $value= function_one(); function_two(\$value); function_three($value);