Work from 01/13/23

This commit is contained in:
hunterdw0007 2023-01-13 20:56:46 -06:00
parent 32b234c9f0
commit d2869acb72

View File

@ -1,9 +1,7 @@
// variables6.rs
// 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);
}