hi<br>
<br>
i'd like to know if there is some way of adding strings (sorry, i don't
what the correct term for this is, maybe variable interpolation?) like
for example in ruby it would be like<br>
<br>
str = "sdfdsf"<br>
puts "something" + str<br>
output: "somethingsdsdf"<br>
<br>
the function string-append isn't what I want, because i would be adding strings somewhat arbitarily in between other strings<br>
<br>
<br>
<br>
<br>