Skip to content

Instantly share code, notes, and snippets.

@igorw
Created October 17, 2013 21:48
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save igorw/7032819 to your computer and use it in GitHub Desktop.
Save igorw/7032819 to your computer and use it in GitHub Desktop.
Quine, from Tom Stuart's "Understanding Computation".
<?php
$data = <<<'DATA'
$program = <<<PROGRAM
<?php
\$data = <<<'DATA'\n$data\nDATA;
$data
PROGRAM;
echo $program;
DATA;
$program = <<<PROGRAM
<?php
\$data = <<<'DATA'\n$data\nDATA;
$data
PROGRAM;
echo $program;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment