When high tech doesn't work try low tech. The code:
#!/opt/CAV1perl/bin/perl $~ = '`'; print "`A "; $_ = $: = $~ | '%'; print "B $_\n"; $; = $^ = '/' | $~; print "C $;\n"; ++$;; print "D $;\n"; $\ = $~ | q[']; print "E $\\n"; ++$;; print "F $;\n"; $: .= ++$;; print "G $:\n"; $/ = ++$;; #print "H $\\n"; ++$\; print "I $\\n"; $_ .= '#' | $~; print "J $_\n"; $, = ++$/; print "K $,\n"; $_ .= '#' | $~; print "J $_\n"; $, = ++$/; print "K $,\n"; $_ .= qq[$\$^$"]; print "L $_\n"; ++$,; print "M $,\n"; $_ .= 'N'; print "P $_\n"; $_ .= qq[$,$;$/$"]; print "Q $_\n"; $_ .= '!.' | $~ . $~; print "R $_\n"; $_ .= qq[$^$/$\$:$"]; print "S $_\n"; $_ .= 'P'; print "T $_\n"; $_ .= $:; print "U $_\n"; $_ .= $^ & '|'; print "V $_\n"; $_ .= $" . $\; print "W $_\n"; $_ .= "$~$~$~" | '!#+'; print "X $_\n"; ++$.; print "Y $.\n"; ++$.; print "Z $.\n"; `$_$:,>&$.`; print "0 $_ AND $: , >& $.\n";
Produces:
perl t.pl `A B e C o D p E g gF q gG er gI h hJ ec hK t hL echo hM u hP echo N hQ echo Nust hR echo Nust an hS echo Nust another hT echo Nust another P hU echo Nust another Per hV echo Nust another Perl hW echo Nust another Perl h hX echo Nust another Perl hack hY 1 hZ 2 hNust another Perl hacker, 0 echo Nust another Perl hack AND er , >& 2
Obviously not perfect but you can figure out what they did.

In reply to Re: Re: How in the heck? by dneedles2
in thread How in the heck? by spaz

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.