Guest User

Untitled

a guest
Feb 17th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. fn main() {
  2. let string_list = vec!["Foo".to_string(),"Bar".to_string()];
  3. let joined = string_list.join("-");
  4. assert_eq!("Foo-Bar", joined);
  5. }
Add Comment
Please, Sign In to add comment