Advertisement
Guest User

Untitled

a guest
Aug 24th, 2019
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. fn main() {
  2. let mut x = 5;
  3. println!("The value of x is {}", x);
  4. x = 6;
  5. println!("The value of x is {}", x);
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement