Tagged Questions
The statement-modifiers tag has no wiki summary.
3
votes
7answers
611 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
289 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
2
votes
4answers
55 views
ruby statement modifiers behavior
I've read a few things, including this and this, but I think the below example is different than what they're talking about. One person actually raises a similar example in the discussion but it's ...
1
vote
4answers
266 views
Proper usage of Ruby statement modifiers
I've just started working with Ruby, and discovered statement modifiers when RubyMine suggested I change this code:
if !VALID_DIRECTIONS.include?(direction)
raise ArgumentError, "Invalid ...