Logo

Programming-Idioms

History of Idiom 48 > diff from v42 to v43

Edit summary for version 43 by programming-idioms.org:
[Rust] Variable s

Version 42

2018-07-02, 14:25:27

Version 43

2018-08-03, 21:30:21

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
r#"Huey
Dewey
Louie"#
Code
let s = r#"Huey
Dewey
Louie"#;
Demo URL
https://play.rust-lang.org/?gist=74d85f4ee293eaeede06db45ec9c8ac2&version=stable&mode=debug&edition=2015