Logo

Programming-Idioms

  • Go
  • Clojure
(def s "Murs, ville,
Et port,
Asile
De mort,
Mer grise
Où brise
La brise,
Tout dort.")

Clojure string literals support newlines directly and standard Java string escape sequences
s := `Huey
Dewey
Louie`

This is a raw string literal (not "interpreted").
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...