Created
February 17, 2010 04:29
-
-
Save schwern/306297 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 utf8; | |
use YAML::XS qw(Load); | |
binmode $_, ':encoding(utf8)' for (*STDIN, *STDOUT, *STDERR, *DATA); | |
#no utf8; # its interfering with the DATA loading | |
my $authors2email = Load(join "", <DATA>); | |
exit; | |
__DATA__ | |
Ævar Arnfjörð Bjarmason: | |
- [email protected] | |
- [email protected] | |
貞廣知行: | |
- [email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment