rustlings/solutions/01_variables/variables5.rs

10 lines
279 B
Rust
Raw Normal View History

2024-05-21 02:47:57 +03:00
fn main() {
2024-05-21 03:43:18 +03:00
let number = "T-H-R-E-E";
2024-05-21 02:47:57 +03:00
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);
}