in reply to Making & Recalling Globals

Why note store it in the object, probably a hash, which these methods share? (Incidentally, those Runmode subs should probably be shifting off a $self, too).

Note that if you do try to store values in package variables declared with our, you'll run into severe troubles if you instantiate more than one object of this class at a time.

Replies are listed 'Best First'.
Re^2: Making & Recalling Globals
by Anonymous Monk on Sep 22, 2010 at 20:31 UTC
    I'll try the shifting off $shelf.
    "Note that if you do try to store values in package variables declared with our, you'll run into severe troubles if you instantiate more than one object of this class at a time."
    Oh, that's helpful. I thought that I had found the solution. Back to the tutorials :-)