Logo

Programming-Idioms

History of Idiom 48 > diff from v11 to v12

Edit summary for version 12 by :

Version 11

2015-09-03, 21:14:14

Version 12

2015-09-04, 21:55:13

Idiom #48 Multi-line string litteral

Assign to variable s a string litteral consisting in several lines of text

Idiom #48 Multi-line string litteral

Assign to variable s a string litteral consisting in several lines of text

Code
s = "several\n" ++
    "lines\nof\ntext\n"