Skip to content

Instantly share code, notes, and snippets.

@ynonp
Created July 9, 2012 12:40
Show Gist options
  • Save ynonp/3076251 to your computer and use it in GitHub Desktop.
Save ynonp/3076251 to your computer and use it in GitHub Desktop.
use v5.14;
use Data::Dumper;
my @letters = ('a'..'f');
my @numbers = (0..7);
my %contacts = ( Mike => 7, Jim => 5 );
my @data = (\@letters, \@numbers, \%contacts);
print Dumper(\@data);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment