Update variables1.rs

This commit is contained in:
appzko 2024-06-05 15:02:58 +02:00 committed by GitHub
parent d140d49b61
commit 78f1285e02
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,9 +5,9 @@
// Execute `rustlings hint variables1` or use the `hint` watch subcommand for a // Execute `rustlings hint variables1` or use the `hint` watch subcommand for a
// hint. // hint.
// I AM NOT DONE
fn main() { fn main() {
x = 5; int x = 5;
println!("x has the value {}", x); println!("x has the value {}", x);
} }