rustlings/variables/variables3.rs

9 lines
121 B
Rust
Raw Normal View History

2015-09-16 19:19:24 -05:00
// Make me compile!
fn main() {
let x = 3;
println!("Number {}", x);
x = 5;
println!("Number {}", x);
}