vote up 6 vote down star
4

Write a program that outputs the reverse of its source code as a string. If the source is

abcd
efg

(i.e., the C string "abcd\nefg")

Then the output should be

gfe
dcba

(i.e., the C string "gfe\ndcba")

Bonus points for using esoteric languages such as brainf*ck.


*EDIT:** Removed the unnecessary \0 characters.+

flag
Hmm.... This could be quite challenging.... – RCIX Sep 1 at 22:21
I hate to be the CW police here, but code golf questions should be community wiki by tradition (check the last 3 or so - all CW). – Chris Lutz Sep 1 at 22:31
Ok, sir! I made it community wiki. :) – Eduardo León Sep 1 at 22:33
Excellent. Working on a Perl solution as we speak. – Chris Lutz Sep 1 at 22:35
If the input program is "blah\n" should the output be "\nhalb" ? – strager Sep 1 at 23:10
show 5 more comments

11 Answers

vote up 7 vote down

HQ9+:

In HQ9+ esoteric language this code might be:

Q

Here You can find interpreter for that language.

Ruby:

Reversed quine from here.

eval s=%q(puts "eval s=%q(#{s})".reverse)
link|flag
3  
Damn you, sir! I would +1 for beating me to the punch, but I believe this should be community wiki. – Chris Lutz Sep 1 at 22:29
Nice answer! Simple is better! – Eduardo León Sep 1 at 22:29
+1 for HQ9+ solution (duh). – LiraNuna Sep 1 at 23:00
2  
Warning--the HQ9+ interpreter locked up Firefox on me. – Loren Pechtel Sep 2 at 3:44
vote up 6 vote down

Here's a two-liner, adapted from NeatQuine.py:

me = 'me = %(me)r\nprint (me %% locals())[::-1]'
print (me % locals())[::-1]
link|flag
+1 The equivalent of the putchar(*p--); trick! :) – Eduardo León Sep 2 at 3:58
vote up 2 vote down

Bash script

(10 Charecters)

cat $0|rev

This must be saved as a script file to work and executed on the same directory.

Another solution would be in python (or any other scripting languages) a zero byte source code file! it will print nothing in return. There's nothing in the rules saying it can't be 0byte file :).

link|flag
+1 for zero-byte Python solution – Ben Blank Sep 2 at 0:14
6  
Quines aren't supposed to read their own source code from the filesystem. – Adam Crume Sep 2 at 18:47
vote up 5 vote down

C89

int sprintf(char*,char*,...);char*d=
"int sprintf(char*,char*,...);char*d=%c%c%s%c%c,b[999],*p=b+251;main(){for(sprintf(b+1,d,10,34,d,34,10,10,10);*p;)putchar(*p--);}%c"
,b[999],*p=b+251;main(){for(sprintf(b+1,d,10,34,d,34,10,10,10);*p;)putchar(*p--);}
link|flag
Famous last words, strager. Testing... – Chris Lutz Sep 1 at 23:49
Output has one fewer ,10 in the arguments to sprintf() than source. – Chris Lutz Sep 1 at 23:51
1  
You were still off by a semicolon in the for() loop, but that's a trivial fix, so I went ahead and added it. But +1. – Chris Lutz Sep 2 at 0:08
2  
@strager: is it actually rude to modify a community wiki answer? Especially when he's not trying to take the credit? Methinks thou dost protest too much. – Adriano Varoli Piazza Sep 2 at 15:14
1  
@Piazza, He could have modified it if I didn't respond to his comment in a week, or something. I'm capable of modifying my own code, and I found it offensive he did it for me. I know this is CW, but that's how I felt. – strager Sep 3 at 0:15
show 4 more comments
vote up 0 vote down

Snip - removed incorrect answer

And now to redeem myself;

<?php echo strrev(file_get_contents(__FILE__)); ?>
link|flag
It's not asking to reverse the input. It's asking to print out the source program in reverse. – strager Sep 2 at 0:05
The goal is to print the program's source code in reverse, not arbitrary user input. Read the Wikipedia article on quines: en.wikipedia.org/wiki/Quine_%28computing%29/… – Chris Lutz Sep 2 at 0:05
bugger. my first attempt at code golf and i misunderstood. :( – Christian Sep 2 at 0:06
:) Don't worry, this is not a serious contest, there's no limit to how many entries you may post! – Eduardo León Sep 2 at 0:11
3  
It's generally considered cheating to read from the source file, but I'm glad you've got the objective now. – Chris Lutz Sep 2 at 0:14
show 3 more comments
vote up 2 vote down

I'm going to lose at golf, but it taught me an important lesson about the subtleties of reverse(). Perl in way too many (142) characters:

#!/usr/bin/perl
$_='#!/usr/bin/perlc%$_=c%s%c%;print sprintf~~reverse,10,39,~~reverse,39,10;c%';print sprintf~~reverse,10,39,~~reverse,39,10;

This proves that the sprintf()/reverse() combination is not the way to approach this problem. A better Perl solution will undoubtedly use eval().

Vast improvement: 45 characters:

print~~reverse <<''x2
print~~reverse <<''x2
​

Note that the source file should end in a blank line. The blank line is counted in the character count - how else do you think we got an odd character count out of two identical lines of code?

link|flag
vote up 3 vote down

F# (659 chars)

open System;let R(s:String)=new System.String(s|>List.of_seq|>List.rev|>Array.of_list) in let q=char 34 in let Q(s:String)=s.Replace(new String([|q|]),new String([|char 92;q|])) in let Quine s=String.Format("let s={0}{1}{2} in printf {3}%s%s{4} (R(Quine s)) (R s)",[|box q;box(Q s);box q;box q;box q|]) in let s="open System;let R(s:String)=new System.String(s|>List.of_seq|>List.rev|>Array.of_list) in let q=char 34 in let Q(s:String)=s.Replace(new String([|q|]),new String([|char 92;q|])) in let Quine s=String.Format(\"let s={0}{1}{2} in printf {3}%s%s{4} (R(Quine s)) (R s)\",[|box q;box(Q s);box q;box q;box q|]) in " in printf "%s%s" (R(Quine s)) (R s)

Inserting line breaks (that break the program, but make it more readable here):

open System;
let R(s:String)=new System.String(s|>List.of_seq|>List.rev|>Array.of_list) in 
let q=char 34 in 
let Q(s:String)=s.Replace(new String([|q|]),new String([|char 92;q|])) in 
let Quine s=String.Format("let s={0}{1}{2} in printf {3}%s%s{4} (R(Quine s)) (R s)",
    [|box q;box(Q s);box q;box q;box q|]) in 
let s="open System;
       let R(s:String)=new System.String(s|>List.of_seq|>List.rev|>Array.of_list) in 
       let q=char 34 in 
       let Q(s:String)=s.Replace(new String([|q|]),new String([|char 92;q|])) in 
       let Quine s=String.Format(\"let s={0}{1}{2} in printf {3}%s%s{4} (R(Quine s)) (R s)\",
           [|box q;box(Q s);box q;box q;box q|]) in " in
printf "%s%s" (R(Quine s)) (R s)
link|flag
vote up 2 vote down

Perl

73 characters.

#! /opt/perl/bin/perl
seek DATA,0,0;$/=\1;print reverse <DATA>;
__DATA__
​
  • You have to have __DATA__ at the end for the DATA file-handle to start out opened.
  • Setting $/ to a reference of a number, causes readline() to read that many bytes at a time.
  • seek(DATA,0,0) is required to set the pointer to the beginning of the file, instead of at the beginning of the __DATA__ section.
  • Could remove, or shorten the shebang line (#! ...)
  • __DATA__ requires a newline after it, or it isn't valid Perl.
link|flag
vote up -2 vote down

python (34 chars):

print(open(__file__).read()[::-1])
link|flag
1  
The rules for writing a quine don't allow reading its source in from a file, including its own source. That misses the point. – caf Sep 3 at 0:13
half of all the answers do exactly the same thing. – SilentGhost Sep 3 at 7:45
vote up 5 vote down

Powershell FTW (1 character):

1

Put it directly on the command line, or inside a script.

link|flag
vote up 3 vote down

Python (55 char):

x='x=%s;print(x%%repr(x))[::-1]';print(x%repr(x))[::-1]

A better golfer might be able to shorten this somewhat, so any improvements are welcome.

link|flag

Your Answer

Get an OpenID
or

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