Quine is a program that prints itself
4
votes
1answer
114 views
Haskell Quine: “ap” Monad
What is the proper way to use the "ap" monad in Haskell? I want to do something similar to this:
main = (putStr . ap (++) show) "main = (putStr . ap (++) show) "
but I get the error "Not in scope: ...
0
votes
1answer
65 views
Are there any other Java quines, besides the one listed on the Wikipedia page?
I know that there is a program code that print itself that is Quine code
As the following
public class Quine
{
public static void main( String[] args )
{
char q = 34; // Quotation mark ...
0
votes
1answer
31 views
Quine using reflection [closed]
Would it be possible to write a quine (a program whose output is itself) in Java using the Reflection API to access the quine's code and then print it out? Such a program would still print itself out ...
2
votes
1answer
74 views
How are complex multi-quines written?
I am defining a multi-quine as:
A set of n programs in n different programming languages, such that each one of them, when given no input, outputs its exact source code, and when given n as input, ...
0
votes
0answers
55 views
Interesting programs similar to quines? [closed]
Are there any similar types of programs with interesting recursive behavior? Quines are a special case, being a fixed point, but I bet there are other interesting programs!
6
votes
2answers
188 views
Understanding ruby quine
I have found this code block on Wikipedia as an example of a quine (program that prints itself) in Ruby.
puts <<2*2,2
puts <<2*2,2
2
However, I do not get how it works. Especially, what ...
0
votes
2answers
93 views
What is quine meant for?
So I just came across the term Quine on Wikipedia and cannot figure out what the heck is it meant for?
I'm more than confused about it.
Are there any uses real-world for it?
2
votes
3answers
2k views
C/C++ program that prints its own source code as its output
Wikipedia says it's called a quine and someone gave the code below:
char*s="char*s=%c%s%c;main(){printf(s,34,s,34);}";main(){printf(s,34,s,34);}
But, obviously you have to add
#include ...
0
votes
1answer
82 views
What makes this snippet not a strict quine?
Does someone know why this is not a strict quine ?
_0='_0=%r;print _0%%_0';print _0%_0
10
votes
1answer
248 views
Quine program without main()
I came across this little quine program, written without main method:
enum f {
f;
System z;
String s="enum f{f;System z;String s=%c%s%1$c;{z.out.printf(s,34,s);z.exit(0);}}";
...
1
vote
2answers
100 views
program to reproduce itself and be useful — not a quine
I have a program which performs a useful task. Now I want to produce the plain-text source code when the compiled executable runs, in addition to performing the original task. This is not a quine, but ...
6
votes
2answers
351 views
What is the “trick” to writing a Quine?
I read Ken Thompson's classic paper Reflections on Trusting Trust in which he prompts users to write a Quine as an introduction to his argument (highly recommended read).
A quine is a computer ...
8
votes
1answer
742 views
Self reproducing program
main(a){printf(a="main(a){printf(a=%c%s%c,34,a,34);}",34,a,34);}
How it is reproducing itself after compilation? What is the role of writing 34 in printf function
Platform GCC UBUNTU 10.04
5
votes
3answers
348 views
Is it possible to create an HTML quine?
Per the title, is it possible to create a (non-trivial) quine in HTML?
My definition of an HTML quine:
A non-trivial HTML quine is one that is not null and uses at least one HTML tag, under the ...
3
votes
0answers
179 views
How to write a quine while keeping the code DRY? [closed]
A quine is a program that prints its own source code without opening itself from the filesystem.
Here is an example of such a quine in C#:
class Q{static void Main(){var s="class Q{{static void ...
1
vote
1answer
226 views
What to do Quine McCluskey Minterm having zero
What to do zero minter in Quine McCluskey algorithm ?
e.g Sigma (0,1,3) is the input
Then do we have to ignore first zero minterm while finding Prime Implicants or we don't care about zero. i.e. it's ...
0
votes
2answers
188 views
How can I write code to show itself [closed]
How can I write a code to show itself (print code to console) using standard C++ only without any external library?
5
votes
3answers
2k views
program that prints itself, how does it work?
I came across a program that prints itself on this site, i.e. it prints the program code.
The program code is:
#include <stdio.h>
char *program = "#include <stdio.h>%cchar *program = ...
2
votes
4answers
110 views
Techniques to implement quines
A few years back I was thinking about ways to make a program that prints its own source code and I came up with these two approaches:
the program prints the .c or .cpp file based upon the executable ...
12
votes
5answers
288 views
Constructing quines (self-reproducing functions) in R
Has anyone constructed a quine ("A program that generates a copy of its own source text as its complete output": http://www.nyx.net/~gthompso/quine.htm) in R? (The [quine] tag pulls up lots of ...
4
votes
2answers
2k views
shortest python quine?
_='_=%r;print _%%_';print _%_
Is this the shortest possible python quine, or can it be done better? This one seems to improve on all the entries on The Quine Page.
I'm not counting the trivial ...
4
votes
1answer
140 views
The missing quines: Visual Basic (for Applications)
Today I surfed some random geek-stuff articles on wikipedia to get my daily dose of useless knowledge. I stumbled accross quines, which are programs that print their own source-code. I found that a ...
1
vote
1answer
136 views
Coding a Quine in J
Today in Computer Science, my friend walked in with an interesting thought, that being a Quine. After looking it up on Wikipedia, we saw lots of examples for more mainstream languages, but nothing for ...
1
vote
3answers
492 views
How to write a quine program without main()
I went through all sorts of quine problems, but my task was to get a quine problem without main(), and loops are also forbidden.
Without loop, it is easy, but I can't figure out how to write one ...
0
votes
3answers
586 views
C++: Self-reproducing program? (Last problem in “Accelerated C++”)
I've completed every exercise in Accelerated C++, however I am now questioning my solution to the last one.
The question reads:
Write a self-reproducing program. Such
a program is one that ...
0
votes
2answers
394 views
Ruby: Print source code
Recently I heard about something called Quine. But my definition of it is a bit unclear.
I believe that you can print your own Ruby file's source code without using __FILE__? Is that possible? I ...
4
votes
1answer
271 views
How does this superb quine work?
Another SO question mentions a fantastic quine by Yusuke Endoh. A quine is a computer program which produces a copy of its own source code as its only output; this one does it with a twist. A ...
1
vote
1answer
174 views
On compilation of The Qlobe
I don't know ruby at all,but while reading some another blog I came across this beautiful piece of work The Qlobe.
But I am a windows vista user and I don't have ruby installed in my system,but I am ...
0
votes
1answer
76 views
Is the reflection namespace a building block for writing a quine in C#?
Do I need to use reflection to write a quine program for C#?
I read elsewhere - quine that opening the source file from disk is "cheating"
So I guess using .net reflector and/or opening the source ...
2
votes
1answer
254 views
quine (self-producing) SQL query
This is a very interesting wiki article about programs that print their own source code without any access to physical source file (in the filesystem). Examples in the articles include C and Scheme ...
0
votes
3answers
189 views
How to Reverse Quine?
i have written a C programme which prints itself n times, but i can't get how to reverse print the same n times.E.g, if the sample programme is :
hello
then the required output should be "olleh" ...
0
votes
4answers
274 views
Quine Confusion.What actually does quine prints?
Does a quine print the ACTUAL code of the program i.e not obfuscated or does it print the obfuscated program?
0
votes
2answers
173 views
Javascript: Execute and Quine at the same time
I have a bizarre need here, and I am unsure of it's feasibility. I can only think how I would do it using threads (To create another thread that performs a Quine function along side a thread running ...
12
votes
1answer
629 views
Zip-file that contains nothing but itself?
Just out of curiosity, does there exist a valid zip-file (according to format spec) that, contains nothing but itself?
Put another way, does the function implemented by unzip have a fix-point?
Can I ...
3
votes
4answers
333 views
Is it possible to access the source code of a python script passed to python on standard in?
This is a bit of a random question that is more out of curiosity than any specific need.
Is it possible to write some python code that will print some stuff out, including the source code itself, ...
2
votes
3answers
160 views
Language features helpful for writing quines (self-printing programs)?
OK, for those who have never encountered the term, a quine is a "self-replicating" computer program. To be more specific, one which - upon execution - produces a copy of its own source code as its ...
2
votes
2answers
432 views
Is this a valid quine?
def start(fileName):
fileReader = open(fileName)
for row in fileReader:
print row,
if __name__ == "__main__":
import sys
if len(sys.argv) <= 1:
print "usage quine /path/to/file"
...
5
votes
2answers
617 views
Is it possible to write a Java printf statement that prints the statement itself?
Is it possible to have a Java printf statement, whose output is the statement itself?
Some snippet to illustrate:
// attempt #1
public class Main {
public static void main(String[] args) {
...
8
votes
3answers
449 views
is it possible to write a program which prints its own source code utilizing a “sequence-generating-function”
is it possible to write a program which prints its own source code utilizing a "sequence-generating-function"?
what i call a sequence-generating-function is simply a function which returns a value ...
44
votes
17answers
2k views
Function which returns itself
As a purely academic exercise (read "because I have no life"), I'm trying to write a function f which accepts another function g, executes g for its side effect, and returns itself.
So I have this:
...
4
votes
3answers
471 views
How could a quine in my programming language look?
I have created a turing-complete programming language (already proven) so it must be possible to write a quine for it, right?
But all quines I know store their source code in a string and then ...
7
votes
7answers
2k views
Programs that reproduces itself
Is it possible to make a Java program that prints its source code to a new file, and compiles it, and runs the compiled program?
12
votes
3answers
861 views
Is it possible to create a quine in every turing-complete language?
I just wanted to know if it is 100% possible, if my language is turing-complete, to write a program in it that prints itself out (of course not using a file reading function)
So if the language just ...
9
votes
3answers
2k views
Shortest Ruby Quine [closed]
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 ...
3
votes
2answers
465 views
C++ Template Quine
It is known that C++ templates are turing complete. As such it should be possible to output a quine that is essentially rendered at compile time. Does anyone know if such a quine has been written ...
1
vote
2answers
325 views
A puzzle - a program printing its own source
Blast from the past. This is one of the puzzles from my early days:
Can you write a method (a function) which when called outputs its own source - literally including all the quotes, indentations, ...
2
votes
3answers
835 views
C# Quine Problem
I am trying to understand how this piece of self-replicating code works (found here), but the problem is I can't get it to run as-is:
class c {
static void Main(){
string s = "class ...
3
votes
4answers
464 views
Can you write a simple weekly reminder using a bash/sh script quine?
I need to set myself a reminder to attend a weekly meeting. The trouble with my company's standard reminder tool is that when it runs under wine, it pops up on an off-screen virtual desktop.
I ...
16
votes
10answers
3k views
Can a program output a copy of itself
I think this might be a classic question but I am not aware of an answer. Can a program output a copy of itself, and, if so, is there a short program that does this?
I do not accept the "empty ...
5
votes
4answers
363 views
Any idea about constructing a higher order Quine program?
Here is a special Haskell program which outputs a Python program that outputs a Ruby program that outputs the original Haskell program (from ...





