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

8 lines
132 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
let x = r#"
This is a "raw string literal," roughly equivalent to a heredoc.
"#;
let y = r##"
This string contains a #.
"##;