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 itself

public class Test
{
   public static void main(String[] args)
   {
      // some code
   }
}

(Any programming language is accepted)

EDIT This question has been answered in the historical posts, search "quine" or check out http://stackoverflow.com/search?q=quine

link|improve this question
Turning this into a community wiki would surely attract more volunteers. – David Hanak Feb 23 '09 at 18:11
1  
Exact duplicate of many, many quine questions on SO: stackoverflow.com/search?q=quine – Adam Davis Feb 23 '09 at 18:14
Oh it is duplicated, sorry. – codemeit Feb 23 '09 at 18:15
No problem. Don't worry about deleting it - it will help others when they try to post the same question by showing up as a suggestion when they enter a new question title. – Adam Davis Feb 23 '09 at 18:16
feedback

closed as exact duplicate by Adam Davis, codemeit, Brian, David Zaslavsky, Ferruccio Feb 23 '09 at 19:33

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

7 Answers

look up Quines.

link|improve this answer
feedback

You are wanting to read about quines. See here.

link|improve this answer
feedback

Hasn't this question already been asked?

link|improve this answer
feedback

There are an infinite number ways to do this. All you have to do is find one way and then add comments....

link|improve this answer
feedback

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