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