rustlings/exercises/variables/variables1.rs
Byoungyoon Park 872a8cbcd5 20230726
2023-07-26 23:03:48 +09:00

9 lines
197 B
Rust

// variables1.rs
// Make me compile!
// Execute `rustlings hint variables1` or use the `hint` watch subcommand for a hint.
fn main() {
let x: i32 = 5;
println!("x has the value {}", x);
}