Skip to content

Instantly share code, notes, and snippets.

Created December 6, 2014 21:51
Show Gist options
  • Save anonymous/ae4a3b88b28511c4bf6e to your computer and use it in GitHub Desktop.
Save anonymous/ae4a3b88b28511c4bf6e to your computer and use it in GitHub Desktop.
while DATA.gets
if $_ =~ /start/ .. $_ =~ /end/
puts "flip flop true: #{$_}"
else
puts "flip flop false: #{$_}"
end
end
__END__
foo
bar
start
inside
blah
this is the end
baz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment