ID:2177614
 
(See the best response by Kaiochao.)
Problem description:
Recently noticed I have no clue how to output onto the same line over two or more statements in dream maker.

Code
var/word="hello"

for(var/x=1;x<=length(word);x++)
src<<"[copytext(word,x,x+1)]"


How would I need to alter the above code to receive
"hello"
instead of
"h"
"e"
"l"
"l"
"o"
Best response
End each output with "\...".
Thanks mate.