Guest User

Untitled

a guest
Jul 22nd, 2018
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 mut names = ["tony", "mic"];
  3. names[2] = "ta";
  4. print!("{}", names[2]);
  5.  
  6. let mut name = vec!["mak", "bill"];
  7. name[2] = "la";
  8. print!("\t{}", name[2]);
  9. }
Add Comment
Please, Sign In to add comment