in reply to Variations on self-replication

Inspired by Szymon Rusinkiewicz, here's how to create the smallest perl program which prints its source code to STDOUT.
$ touch smallest $ perl smallest
Or, if you system doesn't have the touch command...
perl -e ''


-- All code is 100% tested and functional unless otherwise noted.