This isn't highly obfuscated, in fact you should be able to work it out in a couple seconds pretty easily. The comments are amusing =)
#!/usr/local/bin/perl -w use strict; ;# This is a pail of painful perl. It includes things that cannot be, ;# and wierdness that doesn't add up. It *will* run... ;# First they declare the $, can you do that? local $; ;# Did you know you can assign a sub to a $? $ *= sub {$ -= rand 2000000}; $ .= sub {$ --=(int $-)/2}; ;# Can even do bit operations against $! $ |= sub {qw/higher/}; $ ^= sub {qw/lower/}; ;# How about a multiplication by a dereferenced anonymous array? ;# (that has a concatenation with another deref'd anon array!) ;# And what's this about $ being a subroutine? $ * ->( $(), $ .->($) ); ;# This is where is gets bizarre: worthless markers with no gotos, ;# joining something that's not an array; you're on your own. ;# (i put a question mark next to the ones i didn't understand...) { print '$ ' and chomp( $ == <STDIN> ); $ =<=> $ -? print join '', $ =< $ -? $ | ->($) ): $ ^ ->() ,"\n": last; redo; } ;# FINALLY! A normal statement! print "correct.\n";
enjoy,
jynx

In reply to amusing redirection by jynx

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.