This repository has been archived on 2025-01-25. You can view files and clone it, but cannot push or open issues or pull requests.

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);
}