Skip to content

Instantly share code, notes, and snippets.

@chamakits
Forked from anonymous/playground.rs
Last active June 14, 2016 03:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chamakits/51170af024789b6bcad0973ded8df165 to your computer and use it in GitHub Desktop.
Save chamakits/51170af024789b6bcad0973ded8df165 to your computer and use it in GitHub Desktop.
Shared via Rust Playground
fn main() {
println!("Hello everyone!");
println!(r#"First line!
We are here to learn about the language "{}",
a really neat language."#,
"Rust");
println!("Multiline.\
Ignores leading whitespace and newline");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment