Created
June 30, 2018 19:00
-
-
Save rahul-thakoor/3e109456fcdd387c6789c0d3ada68194 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#![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