Advertisement
oylenshpeegul

unicode mascots

Jun 26th, 2013
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 0.32 KB | None | 0 0
  1. #!/usr/bin/env perl
  2.  
  3. use v5.16;
  4. use warnings;
  5.  
  6. binmode STDOUT, 'utf8';
  7.  
  8. my %mascot = (
  9.     Perl   => "\N{DROMEDARY CAMEL}",
  10.     Python => "\N{SNAKE}",
  11.     Ruby   => "\N{GEM STONE}",
  12.     Linux  => "\N{PENGUIN}",
  13.     MySQL  => "\N{DOLPHIN}",
  14.     BSD    => "\N{IMP}",
  15. );
  16.  
  17. say "$mascot{$_}  $_!" for sort keys %mascot;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement