Skip to content

Instantly share code, notes, and snippets.

@tobz
Created July 6, 2015 15:30
Show Gist options
  • Save tobz/3840ee9c86797275002d to your computer and use it in GitHub Desktop.
Save tobz/3840ee9c86797275002d to your computer and use it in GitHub Desktop.
Perl> my $env = "indigo"
indigo
Perl> $env
indigo
Perl> my %env_mappings = ( "indigo" => { "bah" => "quux" } )
2
Perl> $env_mappings{"indigo"}
HASH(0xee90910)
Perl> $env_mappings{"indigo"}{"bah"}
quux
Perl> my $env_mapping = $env_mappings{$env}
HASH(0xee90910)
Perl> $env_mapping{"bah"}
undef
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment