rustlings/exercises/variables/variables4.rs
2021-05-15 12:18:29 +09:00

9 lines
168 B
Rust

// variables4.rs
// Make me compile! Execute the command `rustlings hint variables4` if you want a hint :)
fn main() {
let x = 5;
println!("Number {}", x);
}