RosettaCodeData/Task/Here-document/Rust/here-document.rust

8 lines
132 B
Text
Raw Permalink Normal View History

2015-11-18 06:14:39 +00:00
let x = r#"
This is a "raw string literal," roughly equivalent to a heredoc.
2020-02-17 23:21:07 -08:00
"#;
let y = r##"
This string contains a #.
"##;