rustlings/exercises/01_variables/variables1.rs

7 lines
105 B
Rust
Raw Permalink Normal View History

2024-10-28 20:46:17 +00:00
fn main() {
// TODO: Add the missing keyword.
let x = 5;
println!("x has the value {x}");
}