languages-design

Why multiline string have such strange syntax? ( when they do )

Probably is something really simple that I'm missing, but what's wrong with having a string going in multiple lines? For instance, Ruby is: text = <<END Some text END And Python is: text = """ Some text """ And C# is: string text = @" Some Text"; Which come closer, but still needs the @ char...