blob: b3e089a5277b5e4c42ec1391c1a58f3cc52274a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// 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);
}
|