I want to be able to do this:
Pass a parameter to my main program like "parallel = yes"
and then many functions down in the hierarchy (ie main calls "Function1" which calls "Function2" which calls "Function3", etc) I need to see the value of "parallel". I'd hate to have to pass it to every function along the way even though they will never look at it. Is there a better way to do this?
Thanks,
Dave