2023-11-30 19:41:07 +00:00

13 lines
194 B
Rust

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