variables 6

This commit is contained in:
Paul Scarrone 2023-02-12 19:35:54 -05:00
parent 09c4f660a5
commit 11d2fee7a0

View File

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