I chose the ruby language to learn how to program but I'm stuck in the following exercise :
Write a program that asks for a person's favorite number. Add one to the number, and suggest the result as a much better favorite number
I can only multiply the number and not add
puts 'Olá, qual é seu número favorito ?'
name = gets.chomp
puts 'Seu número favorito é ' + name + '? Que número legal!'
puts 'Eu acho que, ' + name * 1 + ' é um número favorito muito melhor. :)'
If I change : ' + name * 1 + '
by ' + name + 1 + '
new.rb: 4: in + ': no implicit conversion of Integer into String (TypeError)