Last active
February 3, 2018 08:00
-
-
Save note103/aa45903051145a660e8f52c393f9d7ff 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/env perl | |
use strict; | |
use warnings; | |
my %dog = ( | |
name => 'Taro', | |
color => 'brown', | |
); | |
my %cat = ( | |
name => 'Tama', | |
color => 'white', | |
); | |
my %animal = ( | |
dog => \%dog, | |
cat => \%cat, | |
); | |
print ${$animal{dog}}{name}."\n"; #原形 | |
print $animal{cat}->{name}."\n"; #アローを使ったところ | |
print $animal{dog}{color}."\n"; #アロー省略 | |
__END__ | |
Taro | |
Tama | |
brown |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment