Logo

Programming-Idioms

History of Idiom 48 > diff from v48 to v49

Edit summary for version 49 by name:
New Lua implementation by user [name]

Version 48

2019-03-26, 21:19:50

Version 49

2019-06-24, 21:25:10

Idiom #48 Multi-line string literal

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

Idiom #48 Multi-line string literal

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

Extra Keywords
multiline raw
Extra Keywords
multiline raw
Code
str = 'Huey '..
'Dewey '..
'Louie'
Comments bubble
Multiline string that doesn't respect line breaks.