in reply to how do I print all the code while executing, like in the movies?

Movies just print the code from top to bottom, not "as it executes".

#!/usr/bin/perl use strict; use warnings; use Time::HiRes qw( sleep ); seek(DATA, 0, 0); while (<DATA>) { print; sleep(0.150) if !eof(DATA); } print("Hello World!\n"); __END__

If you just want reams of computer gibberish, just download and build Perl. For lesser amounts, using the cpan tool to install just about any module should do.