in reply to What to use instead of global variables

Is there a switch-case struct in Perl? That's completely new to me.
  • Comment on Re: What to use instead of global variables

Replies are listed 'Best First'.
Re^2: What to use instead of global variables
by Cody Fendant (Hermit) on Mar 28, 2012 at 04:59 UTC
    There's a module. But it doesn't work the way he thinks it does.

      There's a module. But it doesn't work the way he thinks it does.
      And which he shouldn't be using. The Switch module mistakenly escaped into Perl 5.8. Do not use it. The Switch module was deprecated in Perl 5.10 and removed in Perl 5.14.

      Notice that in Categorized Damian Modules, the Switch module is categorized by its author as "Damian modules you shouldn't use in production because their purpose is to explore and prototype future core language features".

      You can switch to the built-in given/when if using Perl 5.10+. If stuck with Perl 5.8, you could use an if/elsif block instead.