write multiple lines without "\n" with writeln

Suliman via Digitalmars-d-learn digitalmars-d-learn at puremagic.com
Thu Nov 20 03:08:23 PST 2014


I understand it.

I expect what concatenation symbol will stay new line in new line 
and not append it's to current:

	writeln(
	"first string"
	"second" ~
	"string"
	);

I expect:
first string
second"
string"

but not:
first   stringsecondstring


More information about the Digitalmars-d-learn mailing list