Skip to content

Instantly share code, notes, and snippets.

@rahul-thakoor
Created June 30, 2018 18:46
Show Gist options
  • Save rahul-thakoor/f07fe1a2603fb07a12ca572e639c9328 to your computer and use it in GitHub Desktop.
Save rahul-thakoor/f07fe1a2603fb07a12ca572e639c9328 to your computer and use it in GitHub Desktop.
#![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