blob: d1af8311723f9d53361cb3f5d26d3a93e2be77a2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// variables1.rs
// Make me compile!
// Execute the command `rustlings hint variables1` if you want a hint :)
// I AM NOT DONE
fn main() {
x = 5;
println!("x has the value {}", x);
}
|