1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-02-15 13:53:31 +02:00

10 lines
234 B
Rust
Raw Normal View History

2024-05-21 01:47:57 +02:00
fn main() {
// In Rust, variables are immutable by default.
// Adding the `mut` keyword after `let` makes the declared variable mutable.
let mut x = 3;
println!("Number {x}");
2024-05-21 02:43:18 +02:00
x = 5;
2024-05-21 01:47:57 +02:00
println!("Number {x}");
}