At present, when a user of the popular Q&A website http://stackoverflow.com with under 10k rep tries to view a deleted question, she sees the following image:

polyglot-404.png

(Note that the filename of this image is "polyglot-404.png".)

Which would appear to represent the text:

# define v putchar
#   define print(x) main(){v(4+v(v(52)-4));return 0;}/*
#>+++++++4+[>++++++<-]> ++++.----.++++.*/
print(202*2);exit();
#define/*>.@*/exit()

Even if it weren't for the filename, this would look suspiciously polyglottish. Which languages does this do something interesting in? (Are there any where it does something besides print "404"?)

P.S. Is it just me, or did I just find a bug in Prettify?

link|improve this question

80% accept rate
feedback

3 Answers

It is in both C and Brainfuck.

And it prints 404 in both languages.

http://brainfuck.tk/ in an online interpreter if you want to try it out. (it's what i used)

link|improve this answer
The first part of the line with the Brainfuck is something else. – ohmantics Dec 2 '10 at 0:50
@ohmantics: Actually, there are (at least) two lines with (important) Brainfuck on them. (Technically line 2 has some, but its just the + and the - and those obviously cancel each-other out.) At least, I think line 5 is important somehow... – SamB Dec 2 '10 at 0:55
1  
In fact, I'm also inclined to guess that the strange use of spaces/tabs might also be Whitespace. – ohmantics Dec 2 '10 at 0:57
@ohmantics: Unfortunately, the distinction between spaces and tabs is not preserved very well by the rasterization + OCR process – SamB Dec 2 '10 at 0:59
2  
Those Brainfuck loops are part of the Befunge version. – ohmantics Dec 2 '10 at 1:08
show 2 more comments
feedback

Line 4 with the print(202*2) is valid in any number of scripting languages like Perl, Ruby, ECMAScript (provided a suitable implementation of a print function) and probably Python.

Line 2 is there to make line 4 valid in C and Objective-C, maybe also C++ and Objective-C++.

Line 3 contains some Brainfuck, but there seems to be something else there.

I have no idea what line 1 with the v is for. Why not just call putchar directly in line 2? So, I suspect that there's another language that is somehow made valid through this line. (At first I thought about Whitespace, but there's not enough whitespace in there to be a valid Whitespace program.)

And line 5 obviously also contains some code in some highly compressed language. Maybe something in the APL family (J, K, ...) or Golfscript?

link|improve this answer
Befunge! That's what I was missing. – Jörg W Mittag Dec 2 '10 at 1:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.