rustlings/exercises/01_variables/variables1.rs
Denis-Cosmin NUTIU 06573e87ac initial commit
2024-10-28 22:46:17 +02:00

6 lines
105 B
Rust

fn main() {
// TODO: Add the missing keyword.
let x = 5;
println!("x has the value {x}");
}