The actual code looks like this:
$_ = '...camel top...'; # define the code s/\s*//g; # tidy it eval; # run it eval("seek\040DATA,0,0;"); # go to the start of the file undef $/; $_ = <DATA>; # slurp the whole file s/\s*//g; # remove blanks s;^.*_;;; # remove everything up to __DATA__ (included) map { eval "print\"$_\""; } # convert octal and print /.{4}/g; # the octal characters after __DATA__ __DATA__ lots of octal codes intermixed with whitespace
Copyright © 2000-2001, Philippe "BooK" Bruhat.
Camel code, copyright © 2000, Stephen B. Jenkins.