Help for this page

Select Code to Download


  1. or download this
    if (defined($value) && exists($switch{$value})) {
        $switch{$value}->();
    } else {
        $switch{'default'}->(); # I assume $pages was a mistake
    }
    
  2. or download this
    ($switch{$value} || $switch{'default'})->();