1
0
Fork 0
mirror of https://github.com/notohh/rustlings.git synced 2025-07-09 01:19:16 -04:00
rustlings/exercises/01_variables/variables1.rs
2024-05-21 01:47:57 +02:00

6 lines
97 B
Rust

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