9 lines
240 B
Rust
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);
|
|
}
|