Last active
February 1, 2019 21:26
-
-
Save rossja/19b9cf06d749502e149e838ed3ebd598 to your computer and use it in GitHub Desktop.
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
#!/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