rustlings_solutions/variables/variables3.rs

11 lines
175 B
Rust
Raw Permalink Normal View History

2024-01-17 14:52:52 -05:00
// variables3.rs
//
// Execute `rustlings hint variables3` or use the `hint` watch subcommand for a
// hint.
fn main() {
let x: i32 = 7;
println!("Number {}", x);
}