Quine (computing)


A quine is a computer program that takes no input and produces a copy of its own source code as its only output. The standard terms for these programs in the computability theory and computer science literature are "self-replicating programs", "self-reproducing programs", and "self-copying programs".
A quine is a fixed point of an execution environment, when that environment is viewed as a function transforming programs into their outputs. Quines are possible in any Turing-complete programming language, as a direct consequence of Kleene's recursion theorem. For amusement, programmers sometimes attempt to develop the shortest possible quine in any given programming language.

Name

The name "quine" was coined by Douglas Hofstadter, in his popular 1979 science book Gödel, Escher, Bach, in honor of philosopher Willard Van Orman Quine, who made an extensive study of indirect self-reference, and in particular for the following paradox-producing expression, known as Quine's paradox:

"Yields falsehood when preceded by its quotation" yields falsehood when preceded by its quotation.

History

theorized about self-reproducing automata in the 1940s. Later, Paul Bratley and Jean Millo's article "Computer Recreations: Self-Reproducing Automata" discussed them in 1972.
Bratley first became interested in self-reproducing programs after seeing the first known such program written in Atlas Autocode at Edinburgh in the 1960s by the University of Edinburgh lecturer and researcher Hamish Dewar.
The "download source" requirement of the GNU Affero General Public License is based on the idea of a quine.

Examples

Shortest proper quine

The shortest non-trivial quine in a major programming language known as of 2020 is the 21 character JavaScript ES6 program `).

Constructive quines

In general, the method used to create a quine in any programming language is to have, within the program, two pieces: code used to do the actual printing and data that represents the textual form of the code. The code functions by using the data to print the code, but it also uses the data, processed in a simple way, to print the textual representation of the data itself.
Here are three small examples in Python3:

  1. Example A. chr "'".
a: str = 'a: str = ; print, a, chr))'; print, a, chr))


  1. Example B. chr "'".
b: str = 'b: str = %s%s%s; print, b, chr))'; print, b, chr))


  1. Example C. %r will quote automatically.
c: str = 'c: str = %r; print'; print

The following classic Java code demonstrates the basic structure of a quine.

public class Quine

The source code contains a string array of itself, which is output twice, once inside quotation marks.
This code was adapted from an original post from c2.com, where the author, Jason Wilson, posted it as a minimalistic version of a Quine, without Java comments.
Following the introduction of the text blocks feature in Java 15, a more readable and simpler version is possible:

public class Quine

This is an example of a modern version of Java 25 code:

void main

The code above can be executed by simply dropping its content in any file with the extension, such as "", and then executed with "".
The same idea is used in the following SQL quine:
SELECT REPLACE,CHAR),CHAR AS Quine',CHAR,CHAR),CHAR,'SELECT REPLACE,CHAR),CHAR AS Quine') AS Quine

Eval quines

Some programming languages have the ability to evaluate a string as a program. Quines can take advantage of this feature. For example, this Ruby quine:
eval s="print 'eval s=';p s"
Lua can do:
s="print',34,s,34))"; load
In Python 3.8:

exec

"Cheating" quines

Self-evaluation

In many functional languages, including Scheme and other Lisps, and interactive languages such as APL, numbers are self-evaluating. In TI-BASIC, if the last line of a program returns a value, the returned value is displayed on the screen. Therefore, in such languages a program consisting of only a single digit results in a 1-byte quine. Since such code does not construct itself, this is often considered cheating.

Empty quines

In some languages, particularly scripting languages, an empty source file is a fixed point of the language, being a valid program that produces no output.
Such an empty program, submitted as "the world's smallest self reproducing program", once won the "worst abuse of the rules" prize in the International Obfuscated C Code Contest. The program was not valid C and was not actually compiled, but came with a Makefile which used cp to copy the empty file into another file, which would be executed as a shell script to print nothing.

Ouroboros programs

The quine concept can be extended to multiple levels of recursion, giving rise to "ouroboros programs", or quine-relays. This should not be confused with multiquines.

Example

This Java program outputs the source for a C++ program that outputs the original Java code.


import std;
int main ",
"

<<<<<<<< Java Code >>>>>>>>

",
"public class Quine ",
"",
" std::println;",
" for ",
" return 0;",
"",
" public static void main ",
"

Multiquines

David Madore, creator of Unlambda, describes [|multiquines] as follows:

"A multiquine is a set of r different programs, each of which is able to print any of the r programs according to the command line argument it is passed.."

A multiquine consisting of 2 languages would be a program which:
  • When run, is a quine in language X.
  • When supplied with a user-defined command line argument, would print a second program in language Y.
  • Given the second program in language Y, when run normally, would also be a quine in language Y.
  • Given the second program in language Y, and supplied with a user-defined command line argument, would produce the original program in language X.
A biquine could then be seen as a set of two programs, both of which are able to print either of the two, depending on the command line argument supplied.
Theoretically, there is no limit on the number of languages in a multiquine.
A 5-part multiquine has been produced with Python, Perl, C, NewLISP, and F#
and there is also a 25-language multiquine.

Polyglot

Similar to, but unlike a multiquine, a polyglot program is a computer program or script written in a valid form of multiple programming languages or file formats by combining their syntax. A polyglot program is not required to have a self-reproducing quality, although a polyglot program can also be a quine in one or more of its possible ways to execute.
Unlike quines and multiquines, polyglot programs are not guaranteed to exist between arbitrary sets of languages as a result of Kleene's recursion theorem, because they rely on the interplay between the syntaxes, and not a provable property that one can always be embedded within another.

Radiation-hardened

A radiation-hardened quine is a quine that can have any single character removed and still produces the original program with no missing character. Of necessity, such quines are much more convoluted than ordinary quines, as is seen by the following example in Ruby:

eval='eval$q=%q#\47##\47
",:eval,:instance_,"||=9"]1 1 if 121

Automatic generation

Using relational programming techniques, it is possible to generate quines automatically by transforming the interpreter of a language into a relational program, and then solving for a fixed point.

Variants

Hashquines

A hashquine is a file that contains its own cryptographic hash.
It is related to a quine but works differently. A quine is a program that produces its own source as output, while a hashquine is usually a static file, such as an image or binary, that has been constructed so that its cryptographic digest appears inside the file itself.
Creating a hashquine normally involves giving the file a region of adjustable bytes and then searching for values that cause the final hash to match the value embedded inside the file. Some hashquines appear as images where the displayed hash is part of the picture and the entire image also hashes to that same value.
Hashquines do not execute or print anything. They illustrate fixed points in cryptographic hash functions and are considered a conceptual relative of quines rather than a type of quine in the strict programming sense.