Guest User

Untitled

a guest
Jan 22nd, 2019
61
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 size = 40;
  3. let xss: Vec<Vec<usize>> = (0..size).map(|_| Vec::with_capacity(size)).collect();
  4. println!("Hello, {:#?}!", xss);
  5. }
Add Comment
Please, Sign In to add comment