Is it possible to write a program that outputs its own code in Perl?

  • Thread starter daniel_i_l
  • Start date
  • Tags
    Program
In summary, the conversation discusses the possibility of writing a program that outputs its own code, also known as a "quine". Various methods for achieving this are mentioned, such as using a specific function to output a string and then running the program on itself, or reading in a file containing the code and printing it out. References to additional resources and examples are also provided.
  • #1
daniel_i_l
Gold Member
868
0
Is it possible to write a program (in any language) so that the output is the code of the program itself?
 
Mathematics news on Phys.org
  • #2
10 LIST

On ZX Spectrum :smile:
 
Last edited:
  • #3
daniel_i_l said:
Is it possible to write a program (in any language) so that the output is the code of the program itself?

Yes.

I wrote a mini-compiler in interpreted basic about 30 years ago who's output was a machine level code that would perform the exact same function.

Of course the machine level program was about 10,000 times faster.

Though "10 LIST" is much simpler and doesn't take 10 hours to write. :tongue2:
 
  • #4
Such a program is called a "quine" (presumably after Willard Quine).
 
  • #5
A formulaic way to do it is:

Choose a specific function f so that f(S) is a program that outputs the string S.

Let A be a program that inputs a string S, prints it, then prints f(S).

Now, run the program:
1. f(A)
2. A​

Tweak the details as appropriate for your programming language. An important variation on this method proves the important theoretical result that we can assume any program has access to its own source code.
 
  • #6
#!/usr/bin/perl
while(<>){
print;
}save in a file called "program", then do ./program program. Actually, it's entirely possible to do that without needing to pass the name as an argument to perl (this is stored in the variable $0, I think) so something like

#!/usr/bin/perl
open($_,"<$0");
while(<>){
print;
}
close($_);

should do it, but I've no intention of trying it to find out if I got the right interpolation in the string"<$0".
 
  • #7
in c++ (or any language which produces a separate compiled file) you can do it easily..
write a program which reads a text file with name same as that of itself..

int main(int argc, char* argv[])
{
string filename = argv[0];
readFile(filename);
}

it ll work coz the executable and the source code are in different files.. don't know how u ll get it work for a programme spanning multiple files..
 
  • #8
The idea (although not listed in the OP) is that the program doesn't accept any input nor doesn't read external files. Besides, you are making several faulty assumptions.

int main(int argc, char* argv[])
{
string filename = argv[0];
readFile(filename);
}

It will not work - first of all, executable and the source files are different, second, files don't have to be in the same directory.

This approach may work for interpreted languages. In fact LIST command does just that, although it doesn't need path nor filename.
 
  • #9
Borek said:
The idea (although not listed in the OP) is that the program doesn't accept any input nor doesn't read external files. Besides, you are making several faulty assumptions.
It will not work - first of all, executable and the source files are different, second, files don't have to be in the same directory.

it will work if u have only 1 source code file(*.cpp) and keep the exe file in the same directory. of course, u ll have to get the filename correctly.

ya i know, i made several assumptions. however, in the OP when he says code of the program, does he mean the machine code? i d be very interested to know of a way to do that in c++..
 
  • #10
jablonsky27 said:
it will work if u have only 1 source code file(*.cpp) and keep the exe file in the same directory. of course, u ll have to get the filename correctly.

Not only exe must be in the same directory, but both exe and cpp files have to share the same name. It won't work.



 
  • #12
I was going to recommend the Turing award acceptance speech of Ken Thompson, "Reflections on trusting trust",
http://cm.bell-labs.com/who/ken/trust.html

but I see it's one of the links in the Wikipedia page cited above. So I did it anyway. :)
 
Last edited by a moderator:
  • #13
I would do it like this in C++:

Code:
#include <iostream>  // Standard header

int main()
{
 
std::cout << "Hello, world!\n";
  
std::cout << "#include <iostream>  // Standard header\n";
std::cout << "\n";
std::cout << "int main()\n";
std::cout << "{\n";
std::cout << "\n";
std::cout << "std::cout \<\< \"Hello, world!\\n\";\n";
std::cout << "}\n";

}

but I just realized that now the parts that print out the code, would also be needed to be inlcuded, but in doing so would add more lines representing those lines, in effect it would be an infinate regress. I can't see how this would be solved?

EDIT:::

D'oh I just realized the solution is the method one poster above has done, just read a file and print it to screen, but just make sure that file is code itself!
 
Last edited:
  • #14
Anhar Miah said:
D'oh I just realized the solution is the method one poster above has done, just read a file and print it to screen, but just make sure that file is code itself!
That's not a program producing it's source code: that's a program asking an external process for some text, and then displaying it.
 
  • #15
Reading in a file is a boring semi-solution to a clever challenge. The solutions which are discussed and linked to on the wikipedia page exploit much more clever mechanisms to avoid the infinite regress that Anhar found above.
 
  • #16
I used to have a quine I wrote in C, but I lost it. This should do it in perl, without reading in a file:

Code:
#!/usr/bin/perl
use strict;

sub quote;

$string = <<"HERE";
#!/usr/bin/perl
use strict;

sub quote;

\$string = <<"HERE";
placeholder

\$quoted = quote(\$string);
\$string ~= s/^placeholder\$/\$quoted/m;

print \$string;

sub quote {
  my \$s = shift;
  \$s ~= s/\\\$/\\\\\\\$/sg;
  \$s ~= s/\\\\/\\\\\\\\/sg;
  \$s .= "\\nHERE";
  return \$s;
}
HERE

$quoted = quote($string);
$string ~= s/^placeholder$/$quoted/m;

print $string;

sub quote {
  my $s = shift;
  $s ~= s/\$/\\\$/sg;
  $s ~= s/\\/\\\\/sg;
  $s .= "\nHERE";
  return $s;
}
 

What is a program that outputs itself?

A program that outputs itself is a computer program that produces its own source code as its output. This means that when the program is executed, it will generate a copy of its own code as its result.

Why would someone create a program that outputs itself?

Creating a self-referential program can be seen as a fun and challenging coding exercise. It also demonstrates the power and versatility of programming languages, and can be used as a teaching tool for understanding the fundamentals of programming.

Is a program that outputs itself useful?

From a practical standpoint, a self-referential program serves no real purpose. It does not perform any useful tasks or solve any problems. However, it can be used as a testing tool for compilers or as a demonstration of self-referential systems.

What are some examples of programs that output themselves?

There are many examples of self-referential programs, such as Quines, Brainfuck, and the GNU C Compiler. These programs vary in complexity, but all share the common feature of producing their own source code as their output.

Are there any limitations to creating a program that outputs itself?

While it is possible to create a program that outputs itself in most programming languages, there are some limitations. For example, the program may need to be written in a specific way or use certain functions in order for it to be self-referential. Additionally, the output may not be an exact copy of the source code due to formatting or language-specific constraints.

Similar threads

  • General Math
Replies
2
Views
714
  • Programming and Computer Science
Replies
4
Views
777
  • Computing and Technology
Replies
18
Views
1K
  • Programming and Computer Science
Replies
16
Views
1K
Replies
6
Views
2K
  • Engineering and Comp Sci Homework Help
Replies
3
Views
481
  • STEM Academic Advising
Replies
12
Views
1K
  • Programming and Computer Science
2
Replies
37
Views
2K
  • General Math
Replies
16
Views
2K
Back
Top