Skip to content

Instantly share code, notes, and snippets.

@piisalie
Created August 25, 2014 12:22
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 piisalie/b89dbca982fd1f66f457 to your computer and use it in GitHub Desktop.
Save piisalie/b89dbca982fd1f66f457 to your computer and use it in GitHub Desktop.
fn main() {
let place = "World";
let greeting = "Hello";
let message = greeting.to_string() + " " + place;
println!("{}", message)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment