ID:179214
 
Isn't there something you can input to make two <<'s stay on the same line?

src << "This is a "
src << "test on a single line."

Some little thing I can use to make those two lines come out as the same line? I'm sure I've seen it before, but I might've been daydreaming.
I think it's \...
/ ?
Cheat. Use a text variable and add to it. Then use << on the text variable. (In other words, I don't know so I'm speaking out of my butt. Pity me... I didn't see Groundhog's Day today. :( )
In response to Cinnom
Yes, "\..." works. Thanks.