1
0
Fork 0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-02-20 00:00:03 +03:00
rustlings/exercises/01_variables/variables5.rs

7 lines
214 B
Rust
Raw Normal View History

fn main() {
let number = "T-H-R-E-E"; // don't change this line
println!("Spell a Number : {}", number);
number = 3; // don't rename this variable
println!("Number plus two is : {}", number + 2);
}