How to break a block with such the method like each?
for example:
File.new("big.txt").each do |s|
if s =~ /abcd/
puts s
break # is this right?
end
end