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