in reply to Re^11: Defining global variable in a subroutine
in thread Defining global variable in a subroutine

JavaFan,

You referred to a way to share variables using Exporter. What I was referring to was the possibility that we accidentally created an environment that worked because Exporter was used by one of the applications that we used. It was only a guess.

I will try to find a script that demonstrates the sharing.

Thank you

"Well done is better than well said." - Benjamin Franklin

  • Comment on Re^12: Defining global variable in a subroutine

Replies are listed 'Best First'.
Re^13: Defining global variable in a subroutine
by JavaFan (Canon) on Feb 23, 2012 at 13:23 UTC
    Exporter has nothing to do with forking. Exporter is a way to share symbols between modules. It does not facilitate sharing data between processes.