2018-02-22 06:09:53 +00:00
|
|
|
// variables2.rs
|
2023-05-29 17:39:08 +00:00
|
|
|
//
|
|
|
|
// Execute `rustlings hint variables2` or use the `hint` watch subcommand for a
|
|
|
|
// hint.
|
2015-09-17 00:19:24 +00:00
|
|
|
|
2019-11-11 12:38:24 +00:00
|
|
|
// I AM NOT DONE
|
|
|
|
|
2015-09-17 00:19:24 +00:00
|
|
|
fn main() {
|
|
|
|
let x;
|
|
|
|
if x == 10 {
|
2022-07-11 11:43:41 +00:00
|
|
|
println!("x is ten!");
|
2015-09-17 00:19:24 +00:00
|
|
|
} else {
|
2022-07-11 11:43:41 +00:00
|
|
|
println!("x is not ten!");
|
2015-09-17 00:19:24 +00:00
|
|
|
}
|
|
|
|
}
|