Created
June 30, 2018 18:46
-
-
Save rahul-thakoor/f07fe1a2603fb07a12ca572e639c9328 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""; // nothing | |
let string2 = r"#"; // # | |
let string3 = r" _ there are spaces here _ "; // _ there are spaces here _ | |
println!("{}", string1); | |
println!("{}", string2); | |
println!("{}", string3); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment