![]() |
|
Come for the quick hacks, stay for the epiphanies. | |
PerlMonks |
Re^4: will be happy to read the explanationby Anonymous Monk |
on Nov 21, 2007 at 07:36 UTC ( [id://652075]=note: print w/replies, xml ) | Need Help?? |
Ah I figured it out.
Read up on tr/// and ull get it
Think about this
$_ = "abc";
y/a-c/x-z/;
print $_; # Prints xyz
It goes off an ascii table. ` is right before a and { is right after z.
In Section
Obfuscated Code
|
|