Update variables2.rs

- Improved phrasing.
This commit is contained in:
oM 2024-01-30 17:13:35 +08:00 committed by GitHub
parent 8d0aa11a35
commit c71a5852cf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,8 +8,8 @@
fn main() {
let x;
if x == 10 {
println!("x is ten!");
println!("x is equal ten!");
} else {
println!("x is not ten!");
println!("x is not equal to ten!");
}
}