Merge pull request #7 from akshitgautam42/Ex-8

Exercise 8
This commit is contained in:
Akshit Gautam 2023-11-11 20:20:21 +05:30 committed by GitHub
commit 5a95b29a0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,9 +3,9 @@
// Execute `rustlings hint variables6` or use the `hint` watch subcommand for a
// hint.
// I AM NOT DONE
const NUMBER = 3;
const NUMBER : i32 = 3;
fn main() {
println!("Number {}", NUMBER);
}