Skip to content
Better HN
Top
New
Best
Ask
Show
Jobs
Search
⌘K
undefined | Better HN
0 points
earthboundkid
5y ago
0 comments
Share
Ruby really is Perl done right. I can't really see any argument for Perl over Ruby as a language.
0 comments
default
newest
oldest
ulysses
5y ago
Speed. I moved mostly to Ruby years ago, but when doing lots of text processing, a trivial script in Perl runs a lot faster than a similar trivial script in Ruby.
dhosek
5y ago
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; }
cutler
5y ago
Shouldn't that be:
my $foo = 2; ?
dhosek
5y ago
I was leaving the declaration implicit.
j
/
k
navigate · click thread line to collapse