2024-04-01 12:43:26 +09:00

10 lines
174 B
Rust

// variables3.rs
//
// Execute `rustlings hint variables3` or use the `hint` watch subcommand for a
// hint.
fn main() {
let x: i32 = 1;
println!("Number {}", x);
}