3
votes
7answers
349 views
What does a while after a print mean in Perl?
I am new to Perl. Know a little bit of C though. I came across this snippet in one of our classroom notes :
$STUFF="c:/scripts/stuff.txt";
open STUFF or die "Cannot open $STUFF for read :$!";
print …
3
votes
6answers
203 views
Does Ruby best practice shun statement modifiers after, for example, a long code block that is passed to an iterator?
something.each do |x|
#lots of stuff
end if some_condition
