rust-book/variables/src/main.rs
Timothy Warren 861134542a First commit
2019-01-30 14:25:30 -05:00

10 lines
113 B
Rust

fn main() {
let x = 5;
let x = x + 1;
let x = x * 2;
println!("The value of x is: {}", x);
}