Exercise 8

This commit is contained in:
akshitgautam42 2023-11-11 20:14:21 +05:30
parent 71d59810b1
commit 3f1246caed

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);
}