Statement Ruby

while(line = gets.chop)     
  break if line == "quit"   
  puts eval(line)
end
puts "Good bye"