Created
September 3, 2012 10:33
-
-
Save KamilaBorowska/3608429 to your computer and use it in GitHub Desktop.
humans.txt
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
# Acknowledgments »ö« | |
use v6; | |
my %contributions = | |
'Larry Wall' => ( | |
'Perl', 'Perl 6', 'Camelia', 'helpful feedback', 'content' | |
), | |
'Moritz Lenz' => ( | |
'initiative', 'content', 'design', 'server administration' | |
), | |
'Carl Mäsak' => ( | |
'design', 'content', 'constructive bikeshedding' | |
), | |
'Daniel Ruoso' => ('content', 'design fixes'), | |
'Susanne Schmidt' => 'design', | |
'Daniel Wright' => 'perl6.org domain', | |
'Carlin Bingham' => 'pedantic bug fixing', | |
'Herbert Breunung' => 'minor content'; | |
say 'This site owes its existence to'; | |
for %contributions.keys.sort -> $person { | |
say "* $person (%contributions{$person}.join(", "))"; | |
} | |
say '* and others: https://github.com/perl6/perl6.org/graphs/impact'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment