Skip to content

Instantly share code, notes, and snippets.

@reinh
Created May 31, 2010 02:37
Show Gist options
  • Save reinh/419486 to your computer and use it in GitHub Desktop.
Save reinh/419486 to your computer and use it in GitHub Desktop.
result = ""
while (input = gets.chomp) do
case input
when 'a'
result << input
else
puts result
break
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment