Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. fn main() {
  2. let hello = "Hello ".to_string();
  3. let world = "world!".to_string();
  4.  
  5. let hello_world = hello + world;
  6.  
  7. println!("{}", hello_world);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement