in reply to First attempt.
Prints out a nice 4 line block... Doesnt seem too hard, I'm just in the mood to look at obfus'd stuff in more detail today. ;)# Not an issue.. normal stuff @a=qw(kvtu bopuifs qfsm ibdlfs); # Shift each letter down one. foreach(@a){ $_=~tr/b-y/a-z/; } # Print out the JAPH for(@a){ print "@a\n"; # Put the first element on the end of @a $a=shift(@a); push(@a,$a); } # Later, rinse, repeat
|
|---|