NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Friday May 29, 2009
05:08 PM
Sigh
I'm going to be writing a lot of ruby now. :-/ I'm sad to be giving up the awesome tools available in perl. :-/
*sigh*
# Sigh. Automatic semicolons are a disease.
foo =\
bar\
.select { |e| e.yah? }\
.collect { | e| e.noooo! }\
.select { |e| e.ok? }
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
ugh (Score:1)
The trailing backslashes sooo give me TCL slashbacks. Urgh. 8-P
Re: (Score:1)
Err, flashbacks I mean.
There are ways around that (Score:1)
Ruby will not insert semicolons if it would be syntactically incorrect to do so:
foo =
bar.
select { |e| e.yah? }.
collect { | e| e.noooo! }.
select { |e| e.ok? }
However do tell me if you find an adequate replacement for strict.
Re: (Score:1)
If Ruby had more Smalltalk, it would be just fine.