Tagged Questions
11
votes
9answers
2k 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
318 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 ...
2
votes
4answers
89 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 ...
0
votes
7answers
457 views
How to output the code itself? [closed]
How many ways are there to let the code output itself?
For example, write the code below,
public class Test
{
public static void main(String[] args)
{
// some code
}
}
to output ...