in reply to Quine on my lunch break

Hey, that's pretty cool. For comparison, here is a quine I wrote while reading _Godel Escher Bach_.
#!/usr/bin/perl printme(q{ sub printme { print "#!/usr/bin/perl\n\n"; print "printme(q{$_[0]});\n"; print "$_[0]"; } }); sub printme { print "#!/usr/bin/perl\n\n"; print "printme(q{$_[0]});\n"; print "$_[0]"; }

-Blake