rustlings/exercises/variables/variables5.rs
2021-06-19 20:29:30 +08:00

9 lines
240 B
Rust

// variables5.rs
// Make me compile! Execute the command `rustlings hint variables5` if you want a hint :)
fn main() {
let number = 3;
println!("Spell a Number : {}", number);
println!("Number plus two is : {}", number + 2);
}