commit to mytest

This commit is contained in:
haozhuoD 2021-07-08 17:08:52 +00:00
parent c9b5f25e34
commit fea67ecd81

View File

@ -1,10 +1,10 @@
// variables2.rs // variables2.rs
// Make me compile! Execute the command `rustlings hint variables2` if you want a hint :) // Make me compile! Execute the command `rustlings hint variables2` if you want a hint :)
// I AM NOT DONE
fn main() { fn main() {
let x; let x = 10;
if x == 10 { if x == 10 {
println!("Ten!"); println!("Ten!");
} else { } else {