How to add linebreak to a long string

From: John Smith (debussy_at_gmail.com)
Date: 03/28/05


Date: 27 Mar 2005 20:04:09 -0800

In C#,I can use '@' to let compiler think the last lines of string are
all one string,like this:
   string strName = @'This is a
                      very long string
                      really long string';
  it means strName = 'This is a very long string really long string';
But i don't know how to do the same thing in Delphi?Thanks