Skip to content

Instantly share code, notes, and snippets.

@tomcha
Created August 20, 2015 16:45
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomcha/16b1517038533d210a5b to your computer and use it in GitHub Desktop.
Save tomcha/16b1517038533d210a5b to your computer and use it in GitHub Desktop.
yapc_tote.pl
#!/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