Created
August 20, 2015 16:45
-
-
Save tomcha/16b1517038533d210a5b to your computer and use it in GitHub Desktop.
yapc_tote.pl
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/env perl | |
use strict; | |
use warnings; | |
my @array = ( 115, 117, 112, 112, 111, 114, 116, 101, 100, 32, 98, 121, 32, 76, 105, 118, 101, 115, 101, 110, 115, 101, 32, 73, 110, 99, 46, 10); | |
for my $c (@array){ | |
printf "%c",$c; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment