Guest User

Untitled

a guest
Dec 15th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. #[derive(Debug)]
  2. struct Foo {
  3. x: u32,
  4. y: usize,
  5. }
  6.  
  7. fn main() {
  8. let bar = Foo { x: 5, y: 1000032 };
  9. println!("Hello, world! {:?}", bar);
  10. }
Add Comment
Please, Sign In to add comment