Add mixed strings and Integers


Error: no overload matches 'Int32#+' with type String


examples/intro/add_mixed.cr
x = 23
y = "19"
z = x + y
puts z