rustlings/solutions/01_variables/variables5.rs
2024-05-21 02:43:18 +02:00

10 lines
279 B
Rust

fn main() {
let number = "T-H-R-E-E";
println!("Spell a number: {}", number);
// Using variable shadowing
// https://doc.rust-lang.org/book/ch03-01-variables-and-mutability.html#shadowing
let number = 3;
println!("Number plus two is: {}", number + 2);
}