rustlings/variables/variables3.rs

12 lines
188 B
Rust
Raw Normal View History

2024-06-23 02:38:20 -04:00
// variables3.rs
//
// Execute `rustlings hint variables3` or use the `hint` watch subcommand for a
// hint.
// I AM DONE
fn main() {
let x: i32 = 0;
println!("Number {}", x);
}