Help for this page

Select Code to Download


  1. or download this
    my $config= 'A' eq $test
                ? \%config_A
                : \%config_B;
    
  2. or download this
    my %config= (
        A => \%config_A,
    ...
    
    my $config= $config{ $test }
        or die "Unknown test '$test'";