Guest User

Untitled

a guest
Oct 19th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. fn main() {
  2. let xs: Vec<&str> = vec!["hello ", "world ", "how ", "you do", "?"];
  3. xs.iter().fold("ARIBAAAA! ", |s1, s2| {
  4.  
  5. });
  6. println!("{:?}", xs);
  7. //println!("{:?}", s);
  8. }
Add Comment
Please, Sign In to add comment