Skip to content

Instantly share code, notes, and snippets.

@rahul-thakoor
Created June 30, 2018 19:00
Show Gist options
  • Save rahul-thakoor/3e109456fcdd387c6789c0d3ada68194 to your computer and use it in GitHub Desktop.
Save rahul-thakoor/3e109456fcdd387c6789c0d3ada68194 to your computer and use it in GitHub Desktop.
#![allow(unused)]
fn main() {
let string1 = r#"""#; // "
let string2 = r#""""""""#; // """"""
let string3 = r#"He asked,"Is rust awesome?""#; // He asked,"Is rust awesome?"
println!("{}", string1);
println!("{}", string2);
println!("{}", string3);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment