vote up 54 vote down star
43

So the puzzle is to write a hello world program in your language of choice, where the program's source file as a string has to be a palindrome.

To be clear, the output has to be exactly "Hello, World".


Edit:

Well, with comments it seems trivial (not that I thought of it myself of course [sigh].. hat tip to cobbal).

So new rule: no comments.


Edit:

I feel kind of bad editing someone else's question to say this, but it will eliminate a lot of non-palindromes that keep popping up, and I'm tired of seeing the same simple mistake over and over.

The following is NOT a palindrome:

()()

The following IS a palindrome:

())(

Brackets, parenthesis, and anything else that must match are a major barrier to palindrome-ing, yes, but that doesn't mean you can ignore them and post non-palindrome answers.

flag
1  
I wonder if it is possible to do it without throwaway code. – Angel Chiang Mar 19 at 16:27
2  
Next up on Iron Programmer: A palindrome quine. – Jeff M Mar 24 at 20:49
show 27 more comments

67 Answers

1 2 3 next
vote up 158 vote down

In a language that shall not be named:

++++++++++>
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++>
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++>
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++>
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++>
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++>
++++++++++++++++++++++++++++++++>
++++++++++++++++++++++++++++++++++++++++++++>
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++>
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++>
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++>
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++>
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++>
<.<.<.<.<.<.<.<.<.<.<.<.<.<
>++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>++++++++++++++++++++++++++++++++++++++++++++
>++++++++++++++++++++++++++++++++
>+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>++++++++++
link|flag
1  
How did you ever manage to come up with that? Is it original? – mmyers Mar 18 at 21:49
2  
Just trial and error... it wasn't that hard, it just took a little time. It's original as far as I know. – David Mar 18 at 21:58
1  
Looks like "BrainF*ck" – Cory Larson Mar 18 at 22:13
4  
(Brain)F*ckin brilliant – GvS Mar 19 at 13:03
3  
I'm tempted to take this extreme upvoting as a sign that I should attempt a smaller solution in the same language. – Chris Lutz Mar 24 at 20:55
show 10 more comments
vote up 133 vote down

I started from Tiny Programs and wrote my own assembly. Sure, maybe it can be reduced further, but I don't know which other ELF header fields I can subvert for use as code while still being portable.

$ wc -c hellolleh
245 hellolleh
$ xxd hellolleh
0000000: 7f45 4c46 0101 0100 0000 0000 0000 0000  .ELF............
0000010: 0200 0300 0100 0000 5000 9331 2c00 0000  ........P..1,...
0000020: 0000 0000 0000 0000 3400 2000 0100 0000  ........4. .....
0000030: 0000 0000 0000 9331 c040 cd80 f800 0000  .......1.@......
0000040: 7401 0000 0700 0000 0010 0000 f7d8 ebe6  t...............
0000050: 686f 726c 6468 6f2c 2057 6848 656c 6cb8  horldho, WhHell.
0000060: 0400 0000 bb01 0000 0089 e1ba 0c00 0000  ................
0000070: cd80 bb00 0000 00e9 baff ffff bae9 0000  ................
0000080: 0000 bb80 cd00 0000 0cba e189 0000 0001  ................
0000090: bb00 0000 04b8 6c6c 6548 6857 202c 6f68  ......lleHhW ,oh
00000a0: 646c 726f 68e6 ebd8 f700 0010 0000 0000  dlroh...........
00000b0: 0700 0001 7400 0000 f880 cd40 c031 9300  ....t......@.1..
00000c0: 0000 0000 0000 0000 0100 2000 3400 0000  .......... .4...
00000d0: 0000 0000 0000 0000 2c31 9300 5000 0000  ........,1..P...
00000e0: 0100 0300 0200 0000 0000 0000 0000 0101  ................
00000f0: 0146 4c45 7f                             .FLE.
$ file hellolleh
hellolleh: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), statically linked, corrupted section header size
$ ./hellolleh
Hello, World

(You can use xxd -r to load this hexdump back into a binary file.)

link|flag
show 4 more comments
vote up 83 vote down

cheating by comments in a shell script of your choice (bash for me)

echo 'hello world' # 'dlrow olleh' ohce

Edit:

And using the preprocessor in c you can use

#define foo fidne#
#include <stdio.h>

int main() {
    printf("hello world\n");
}

#if 0
0 fi#
}
;)"n\dlrow olleh"(ftnirp    
{ )(niam tni

>h.oidts< edilcni#
#endif oof enifed#

Edit: updated C code to remove all warnings in gcc (still one in Comeau though)
updated C code to be palindrome (thanks Can Berk Güder)

Edit:

And the simple, elegant, elisp solution

(message "%s" "hello world")'("dlrow olleh" "s%" egassem)

Although this is not a strict palindrome as I had to reverse parens

link|flag
3  
I don't think comments should count ;D – Element Mar 18 at 19:32
show 19 more comments
vote up 63 vote down

Perl:

print + "Hello, World\n";"n\dlroW ,olleH" + tnirp
link|flag
3  
@David: since "tnirp" is not a function, it evaluates to the string "tnirp". Since "+" is a numerical operator, both strings are evaluated in numerical context (to zero). The 2 zeroes are added together, and the result is not used for anything (i.e. thrown away). – runrig Mar 18 at 20:52
1  
using 'say', you could shorten this guy by 8 characters. :) – Robert P Mar 19 at 16:14
2  
@Robert P - You could, but then you'd have to add "use feature 'say';" at the beginning. And ";'yas' erutaef esu" at the end. You lose more than you gain. – Chris Lutz Mar 24 at 20:42
show 6 more comments
vote up 53 vote down

In the Machine Language Monitor on an Apple //e, type N300G003N to run this program:

300: A2 0C BD 0B 03 20 ED FD CA D0 F7 60 E4 EC F2 EF D7 A0 AC EF EC EC E5 C8 8C 5E CE CE FE CA 0A 7D FE 2F CE 4E 06 7F 0D AC DF DE 02 30 B0 DB C0 2A :003
link|flag
9  
+1 for answer. I wish I could give another +1 for it being on the Apple ][e. – Beska Mar 19 at 13:02
show 1 more comment
vote up 39 vote down

Python 2.5:

'''dlroW ,olleH' tnirp
'''
print 'Hello, World'''
link|flag
1  
One liner version """dlrow ,olleH" tnirp;""";print "Hello, world""" – gnibbler Oct 29 at 7:34
show 3 more comments
vote up 39 vote down

Haskell. Actually pretty easy :)

main = putStr hw
hw = const "Hello, World" ab
a = ba ; niam = main ; ab = a
ba "dlroW ,olleH" tsnoc = wh
wh rtStup = niam
link|flag
2  
+1 for declarative languages making this easier. – Steven Huwig Mar 20 at 13:49
1  
good thing haskell doesn't need so many parenthesis :) – VoidPointer Aug 28 at 13:35
vote up 34 vote down

That should work on most shells (sh, bash and (thanks to Paulius Maruška) even in Windows ;-) ):

echo Hello World || dlroW olleH ohce

proof (the key is the lazy evaluation if echo Hello World succeeds, which does):

$ echo Hello World || dlroW olleH ohce
Hello World

Another one in sh/bash:

   alias dlroW=true saila=true
echo Hello World;dlroW olleH ohce
   eurt=alias eurt=World saila

EDIT: My old one (in bash, too) was not correct:

cat <(echo Hello World >&2;2&> dlroW olleH ohce)< tac

is no palindrome since the brackets are the wrong way and it needs a file called tac in the actual directory.

link|flag
2  
very nice, tac must be a file though – cobbal Mar 18 at 20:04
show 6 more comments
vote up 25 vote down

In common lisp (using no comments or syntactic sugar). Prints only "Hello World!" and returns NIL.

(let (tel etouq)
  (let (tamrof etouq)
    (format t "Hello World!"
            "!dlroW olleH" t tamrof)
    (quote format)
    tel)
  (quote let)
  tel)
link|flag
7  
Not a palindrome (your parentheses aren't reversed). – mmyers Mar 18 at 20:43
1  
actually, I think that makes it more palindromic somehow, it's almost a mirror image – Ferruccio Mar 18 at 21:09
show 5 more comments
vote up 21 vote down

Here's my answer in TCL:

proc unknown args {puts "Hello World!"}
}"!dlroW olleH" stup{ sgra nwonknu corp

Gotta love a language where the quote rules are really more guidelines than rules. The very fact that line 2 makes no sense causes line 1 to greet the user.

Actually, i think the proc unknown mechanism in tcl is really helpful in some cases and I miss it in other languages.

link|flag
1  
@Lucas Oman: Actually, they are not. If you reverse the second line, the 'backwards' braces become forward. Many other answers to this question make that mistake. – TokenMacGuy Mar 24 at 17:57
show 5 more comments
vote up 19 vote down

Pseudocode:

Output "Hello, World".
Ignore the two next lines.
.senil txen owt eht erongI
."dlroW ,olleH" tuptuO
link|flag
show 2 more comments
vote up 18 vote down

Surprise surprise, Jon Skeet has done that ;-)

link|flag
16  
Am I the only one who thought Skeet's answer there was incredibly lame? Sorry, I must've missed the fanboy bus ;) – ojrac Mar 18 at 21:06
1  
Maybe... it's kind of funny. At least the first time you see it. (It's not just because it's Jon Skeet!) – David Mar 18 at 21:24
6  
I thought it was lame from the first time on. :) – ypnos Mar 18 at 22:15
3  
Jon Skeet's solution does not, in fact, solve the problem given. It prints "Hello World", not "Hello, World". – ChrisA Mar 21 at 13:03
1  
@ojrac: no you aren't – abababa22 Mar 21 at 13:09
show 1 more comment
vote up 14 vote down

C++

Not sure if this is considered cheating or not :P

int main() //
{ // }
  // ;0 nruter
  printf("Hello, World"); // ;)"dlroW, olleH"(ftnirp
  return 0; //
} // {
// )(niam tni
link|flag
1  
Parens should be reversed in the comments. – RobH Mar 19 at 2:51
vote up 13 vote down

In HQ9+,

H

edit:

As the challenge clearly notes, the output has to be exactly "Hello, World" whereas HQ9+ prints "Hello, world!" and so here is a special version of HQ9+ written in C that when compiled will output exactly "Hello, World" using the following command:

./hq9 "" -9qH H one letter palindrome
link|flag
show 1 more comment
vote up 11 vote down

Shortest yet (in TeX):

Hello, world\end dne\dlrow ,olleH
link|flag
1  
Should the slashes be reversed, since the parens are? – John Aug 28 at 23:13
show 1 more comment
vote up 11 vote down

And people say this is hard in python (edited, didn't see the "no comments" rule)...

" \"" and print('Hello, world') and " dna )'dlrow ,olleH'(tnirp dna ""\ "

I challenge anyone to do better: this not only is one line, but it returns None so you don't get any extra output if you type it into the Python REPL.

link|flag
1  
Py3k? My Python 2.5.4 doesn't like print as a function. – ephemient Mar 25 at 3:14
show 3 more comments
vote up 11 vote down

Or in yet another language that shall not be named:

"!dlroW olleH">:#,_@_,#:>"Hello World!"

link|flag
show 4 more comments
vote up 10 vote down

Basic (Someone had to do it)

10 PRINT "HELLO WORLD" : GOTO 20 : DNE 02
20 END : 02 OTOG : "DLROW OLLEH" TNIRP 01

Explanation: Basic is an interpreted language. The interpreter doesn't parse the source it doesn't need to. ':' is statement separator like ';' in C-like languages.

In fact this works too, it prints Hello World, but stops with an error.

10 PRINT "HELLO WORLD" : "DLROW OLLEH" TNIRP 01
link|flag
4  
Try 10 PRINT "HELLO WORLD" : END : DNE : "DLROW OLLEH" TNIRP 01 – TokenMacGuy Apr 3 at 0:10
show 3 more comments
vote up 8 vote down

Perl, inspired by the awk and php solutions:

BEGIN{print"Hello, World";exit}tixe;"dlroW ,olleH"tnirp{NIGEB

It exits before it discovers that the remainder of the file doesn't make any sense.

link|flag
show 4 more comments
vote up 7 vote down

In Ruby,

tcepsni = puts "hello world!" || "!dlrow olleh"
stup = inspect

(argg, there's a newline)

link|flag
vote up 6 vote down

J, no comments.

1!:2&2['Hello, World'['dlroW ,olleH'[2&2:!1
link|flag
1  
Again, the brackets and parentheses aren't reversed. It's sort of a mirror image this way, except for all those other characters. – mmyers Mar 19 at 16:01
show 2 more comments
vote up 6 vote down

Ruby:

puts %"Hello, World!" || "!dlroW ,olleH"% stup
link|flag
vote up 5 vote down

Here's what I have so far in Java:

//}
;class tni
/*//;"*/{ public static void main(String[]gnirtS) { /*"
+"*/System.out.println(new StringBuilder().toString()+'H'+'e'+'l'+'l'+'o'+','+' '+'W'+'o'+'r'+'l'+'d'); /*"
+"*/} /*"
+"*/String gnirtS = " = String gnirtS/*"+
"*/ }/*"+
"*/ ;)'d'+'l'+'r'+'o'+'W'+' '+','+'o'+'l'+'l'+'e'+'H'+)(gnirtSot.)(redliuBgnirtS wen(nltnirp.tuo.metsyS/*"+
"*/ { )String][gnirtS(niam diov citats cilbup {/*";//*/
int ssalc;
}//

Only one of the comments is in violation of the spirit of the rules: the //} at the very start. The rest are just to mask newlines; I could take them out if I wrote the main part of the program on one line.

The center of the palindrome is the quotation mark: String gnirtS = "

I'm pretty sure it's actually a palindrome. What's the easiest way to check?

EDIT: It wasn't quite, but now it is.

link|flag
1  
equal(reverse(s), s)... – Assaf Mar 18 at 20:51
vote up 5 vote down
"Hello, World" || "dlroW ,olleH"

This is an even shorter variation on several that we've seen already. The interesting thing about this one is that it works in several languages, depending on your interpretation of the rules (whether quotes are allowed to be printed out or not):

Javascript, as executed in the Spidermonkey interpreter:

$ js
js> "Hello, World" || "dlroW ,olleH"
Hello, World

Ruby:

$ irb
irb(main):001:0> "Hello, World" || "dlroW ,olleH"
=> "Hello, world"
link|flag
vote up 4 vote down

Write in "in your language of choice" leaves a pretty big hole. My language of choice for this problem is a home-brew language consisting of one command. So here is the code calling that one command:

HelloolleH

Of course what that command does is print Hello World.

link|flag
3  
And the compiler must also be a palindrome! – Chris Lutz Mar 18 at 20:28
3  
please post your compiler gzipped - the zipped file of course being a palindrome! – petr k. Mar 18 at 21:04
show 4 more comments
vote up 4 vote down

Python 2.x:

"t\";]41:1[";print"\tHello, World..dlorW ,olleHt\"tnirp;"[1:14];"\t"

@Dietrich Epp: 5 characters shorter.

link|flag
show 1 more comment
vote up 4 vote down

I wanted to code a C solution that doesn't use #if or #ifdefs because I think of them as just another form of comments.

So! Here is my attempt, completely free of comments, #ifs and #ifdefs.

I used gcc 4.3.2, with the -Wall flag; it compiled without warnings or errors.

 
#define niam ){printf("Hello, World\n");return 0;}x(( z enifed#
;int(y);
#define x(x)
#include <stdio.h>
#define tni 0)
#define y int y=
int main(niam tni
=y tni y enifed#
)0 int enifed#
>h.oidts< edulcni#
)x(x enifed#
;)y(tni;
#define z ((x};0 nruter;)"n\dlroW, olleH"(ftnirp{) main enifed#
link|flag
vote up 3 vote down

Io:

forward   :=  method
"Hello, world" print
tnirp "dlrow, olleH"
dohtem  =:   drawrof
link|flag
vote up 3 vote down

In APL :

'Hello World!',13↓31,'!dlroW olleH'

And within a dynamic function (only in Dyalog APL dialect) :

⍬{'Hello World!',13↓31,'!dlroW olleH'}⍬

Of course, again the brackets make it a mirror image rather than a strict palindrome.

link|flag
show 3 more comments
vote up 3 vote down

mIRC Script:

//echo Hello, World | alias dlrow noop poon world saila | dlroW ,olleH ohce//
link|flag
1 2 3 next

Your Answer

Get an OpenID
or

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