Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror

Comment Re:Perl is a pain (spolier) (Score 1) 1260

Cute use of perl special characters and logical ops. For those that need hints. A regexp like (?{ <code> }) means run <code> as if it were perl. The <code> is constructed from exclusive or'ed strings that get concatenated. The resulting code is

print "I won",$/

$/ is the special variable for "input separator".

For other obfuscated code in C visit http://www.ioccc.org

Slashdot Top Deals

An algorithm must be seen to be believed. -- D.E. Knuth

Working...