8 lines
132 B
Text
8 lines
132 B
Text
|
|
let x = r#"
|
||
|
|
This is a "raw string literal," roughly equivalent to a heredoc.
|
||
|
|
"#;
|
||
|
|
|
||
|
|
let y = r##"
|
||
|
|
This string contains a #.
|
||
|
|
"##;
|