http://qs321.pair.com?node_id=149340


in reply to Re: Help needed understanding global variables in Perl
in thread Help needed understanding global variables in Perl

The closest thing to a global variable are either "magical" variables or punctuation variables.

No. All punctuation variables are global, and some are magical. Not every global is a punctuation variable or magical. $foo is a valid global scalar that goes in foo's stash, just like @foo.

++ vs lbh qrpbqrq guvf hfvat n ge va Crey :)
Nabgure bar vs lbh qvq fb jvgubhg ernqvat n znahny svefg.
-- vs lbh hfrq OFQ pnrfne ;)
    - Whreq

  • Comment on Re: Re: Help needed understanding global variables in Perl

Replies are listed 'Best First'.
Re: Re: Re: Help needed understanding global variables in Perl
by shotgunefx (Parson) on Mar 05, 2002 at 13:28 UTC
    Are punctuation variables truly global or are they forced to be in main:: when unqualified?

    -Lee

    "To be civilized is to deny one's nature."
      They are forced into main::, but they are global. You can abuse this by starting your string with a control character: ${^Foo} is also forced into main::. (it's actually ${"\cFoo"})

      ++ vs lbh qrpbqrq guvf hfvat n ge va Crey :)
      Nabgure bar vs lbh qvq fb jvgubhg ernqvat n znahny svefg.
      -- vs lbh hfrq OFQ pnrfne ;)
          - Whreq