Nothing is preventing you from using /echo multiple times

echo first piece
echo second piece
echo third piece
...
If you don't want to use multiple lines then you could do something like this:
//tokenize 10 first piece $lf second piece $lf third piece | echo $*
Greets