Getting runtime code error: In '+': no implicit conversion of Integer into String TypeError
num = 5;
puts ("this is number: " + num);
Actual Result:
runtime code error: In '+': no implicit conversion of
IntegerintoStringTypeError
Expected Result - I should see printed statement -
this is number: 5
"this is number: #{num}"