Skip to content

Instantly share code, notes, and snippets.

@syncsynchalt
Created August 1, 2011 20:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save syncsynchalt/1118926 to your computer and use it in GitHub Desktop.
Save syncsynchalt/1118926 to your computer and use it in GitHub Desktop.
#!/usr/bin/perl -w
use strict;
my %third = ( 'ous' => 'huh' );
my %second = ( 'i' => \%third );
my %ob = ( 'nox' => \%second );
print $ob{nox}{i}{ous}, "\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment