Created
August 22, 2012 16:16
-
-
Save smujohnson/3427125 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
use strict; | |
use warnings; | |
use 5.010; | |
use Data::Dumper; | |
my @stuff = ( { a => 1, b => 2} ); | |
# osse | |
say Dumper keys $stuff[0]; | |
# sjohnson | |
say Dumper keys %{ $stuff[0] }; |
Osse
commented
Aug 22, 2012
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment