Logo

Programming-Idioms

History of Idiom 48 > diff from v55 to v56

Edit summary for version 56 by thethanlaw:
New Ada implementation by user [thethanlaw]

Version 55

2019-09-26, 19:12:26

Version 56

2019-09-28, 04:27:11

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
s : String := "Will this compile? " &
     "Oh yes it will";
Comments bubble
I'm assuming this is what is meant by "consisting in several lines of text."

Use New_Line for line feeds.