Skip to content

Instantly share code, notes, and snippets.

@rossja
Last active February 1, 2019 21:26
Show Gist options
  • Save rossja/19b9cf06d749502e149e838ed3ebd598 to your computer and use it in GitHub Desktop.
Save rossja/19b9cf06d749502e149e838ed3ebd598 to your computer and use it in GitHub Desktop.
#!/usr/bin/perl
use strict;
my @chars=(
"\x0a","\x0a","\x3d","\x78",
"\x3d","\x20","\x0a","\x6f",
"\x20","\x2e","\x20","\x0a",
"\x5e","\x5f","\x5f","\x5f",
"\x5e","\x0a","\x0a","\x79",
"\x74","\x74","\x69","\x6b",
"\x0a","\x74","\x70","\x69",
"\x72","\x63","\x73","\x0a",
);
for(my $i=scalar(@chars); $i>=0; $i--) {
print "$chars[$i]";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment