Logo

Programming-Idioms

  • Scala
  • C#
  • Python
s = ('line 1\n'
     'line 2\n'
     'line 3\n'
     'line 4')

"... String literals that are part of a single expression and have only whitespace between them will be implicitly converted to a single string literal."
s = """Huey
Dewey
Louie"""
val s = """line 1
          |line 2
          |line 3""".stripMargin

Using stripMargin to declare indented multi-line strings.
val s = """line 1
line 2
line 3"""
string s = @"Huey
Dewey
Louie";

It's called a verbatim string literal.
s : String := "Will this compile? " &
     "Oh yes it will";

I'm assuming this is what is meant by "consisting in several lines of text."

Use New_Line for line feeds.

New implementation...