Logo

Programming-Idioms

History of Idiom 48 > diff from v3 to v4

Edit summary for version 4 by :

Version 3

2015-07-31, 20:15:56

Version 4

2015-08-19, 15:19:08

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
let s = "one line \
    written over \
    several";
Origin
http://stackoverflow.com/a/29483453/3369597