Just finished reading this blog post: http://www.skorks.com/2010/03/an-interview-question-that-prints-out-its-own-source-code-in-ruby/

In it, the author argues the case for using a quine as an interview question. I'm not sure I agree but thats not what this question is about.

He goes on to construct a quine in Ruby and refactor it to make it shorter. He then challenges the reader to try to make it even shorter.

I played around with it for a while and came up with the following:

s="s=;puts s[0,2]+34.chr+s+34.chr+s[2,36]";puts s[0,2]+34.chr+s+34.chr+s[2,36]

This is the first time I have ever attempted a quine and I can't figure out how to make it any shorter.

What is the shortest Ruby quine you can come up with? Please post an explanation if your implementation requires it.

link|improve this question

1  
If you are wondering, a quine is a program which, when run, prints it's own source code. en.wikipedia.org/wiki/Quine_(computing) – AaronThomson Mar 19 '10 at 3:44
4  
Here is my shortest Quine: – Kevin Sylvestre Mar 19 '10 at 3:50
Perhaps I should have said "shortest, non-trivial quine"? – AaronThomson Mar 19 '10 at 3:52
2  
Also, the shortest (non-zero length Quine): eval s=%q(puts"eval s=%q(#{s})") – Kevin Sylvestre Mar 19 '10 at 3:55
feedback

closed as not constructive by Anthony Pegram, casperOne Jan 10 at 0:51

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

3 Answers

up vote 11 down vote accepted

Unfortunately RubyGarden doesn't exist anymore. Here are a couple of links to make up for it (the one Kevin posted is not the shortest one anymore by the way):

The first quines in Ruby

s="s=%c%s%c; printf s,34,s,34,10%c"; printf s,34,s,34,10

ruby quine slightly smaller than python quine

_="_=%p;puts _%%_";puts _%_

shortest nozero [sic!] ruby quine

puts <<2*2,2
puts <<2*2,2
2
link|improve this answer
Thanks, thats just what I was looking for. Can you explain the syntax on the last one? – AaronThomson Mar 21 '10 at 4:04
It's actually explained on the second page of the thread linked above. Quote: "puts <<2" - print all the text from after this statement until you reach the string "2". ...."*2" - Print that string twice ....",2" - And then print the value 2 The second "puts <<2*2,2" is just text, and the final "2" is the delimiter. – Michael Kohl Mar 21 '10 at 9:07
It works on Perl too! pastebin.com/0YVrr4wN – SHiNKiROU Dec 18 '10 at 5:14
feedback
$><<open($0).read

17 bytes, if you don't have a trailing newline.

EDIT: oh, wait, reading your own source file is cheating.

link|improve this answer
feedback

Even shorter:

$><<IO.read($0)

15 characters, not including the newline

link|improve this answer
feedback

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