Earlier quoted context omitted.
Ruby really is Perl done right. I can't really see any argument for Perl over Ruby as a language.
use strict. In Perl you can prevent something like the following from compiling. You can't with Ruby (unless they've finally addressed that). $foo = 2; if (some_test()) { $fooo = 3; }
my $foo = 2;
?