rustlings/exercises/variables/variables5.rs
Dominic London 0a124c2995 Merge branch 'main' into dev
- Solve if3.rs
2024-01-07 22:23:11 +00:00

12 lines
328 B
Rust

// variables5.rs
//
// Execute `rustlings hint variables5` or use the `hint` watch subcommand for a
// hint.
fn main() {
let number = "T-H-R-E-E"; // don't change this line
println!("Spell a Number : {}", number);
let number = 3; // don't rename this variable
println!("Number plus two is : {}", number + 2);
}