Hehe. Well, you'll enjoy Perl. You can do pretty much whatever you want with it.... instead of learning php for your website, C++ for your lil' command-line helper apps, and VB or Delphi for your Windows programs... you can just use Perl to do it all. It's great for lazy people or people who don't want to learn 5 programming languages. Links you may find useful:
IndigoStar Software - Offers a program called Perl2Exe that lets you convert your perl scripts into EXE files that anyone can run. They also make IndigoPerl, which is an Apache webserver bundled with Perl and PHP (it's ready to go, you don't have to set up anything like you do with regular Apache). Use IndigoPerl on your webserver if you want to save time.
ActivePerl - Perl by itself, without Apache. Use this on your personal computer
CPAN - Comprehensive Perl Archive Network. All the Perl modules you'll ever need (and modules are what makes Perl fun)
It's easier than you think to install perl modules, btw. Once you get Perl installed (the ActivePerl one) run
ppm from C:\Perl\bin ... you'll get a ppm> prompt. Then type
install PackageName (example:
install Win32::GUI) and boom, it's auto-installed for you! Perl rules because it's simple.