Created
August 1, 2012 17:23
-
-
Save eMaringolo/3228968 to your computer and use it in GitHub Desktop.
Smalltalk Quine
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ :s | Transcript show: s; show: s printString ] value: '[ :s | Transcript show: s; show: s printString ] value: ' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Quine
A quine is a computer program which 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.
Via: http://en.wikipedia.org/wiki/Quine_(computing)