rustlings/exercises/01_variables/variables1.rs

7 lines
101 B
Rust
Raw Normal View History

2015-09-17 03:19:24 +03:00
fn main() {
2024-08-17 15:56:52 +03:00
// TODO: Add the missing keyword.
2015-09-17 03:19:24 +03:00
x = 5;
2024-05-21 02:47:57 +03:00
println!("x has the value {x}");
2015-09-17 03:19:24 +03:00
}