mirror of
https://github.com/notohh/rustlings.git
synced 2024-11-21 21:42:23 -05:00
9 lines
279 B
Rust
9 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);
|
|
}
|