|
|
|
|
|
by danso
5437 days ago
|
|
>10 puts "There are " + cars + " cars available." Yes, this will throw an error in Ruby because of line 1: >1 cars = 100 Ruby does not allow the mixing of integers and strings. So, as mentioned, you can invoke the .to_s method. Or you can interpolate the variables as you have done so with #{cars} inside double quotes. |
|