Created
December 2, 2014 12:02
-
-
Save mix3/ece610942c114c1ce4b5 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 Data::Dumper; | |
sub hoge { | |
return; | |
} | |
sub fuga { | |
return 1; | |
} | |
sub piyo { | |
return { | |
a => hoge(), | |
b => fuga(), | |
}; | |
} | |
print Dumper piyo(); |
Author
mix3
commented
Dec 2, 2014
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment