Created
June 14, 2016 03:22
-
-
Save anonymous/70d8894d89fc1bd56ea1ecd6eac6a40f to your computer and use it in GitHub Desktop.
Shared via Rust Playground
This file contains 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
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