rustlings/exercises/variables/variables1.rs
Hasan Hakkaev 99f6299df6
20062023
2023-06-20 20:47:52 +02:00

9 lines
196 B
Rust

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