rustlings

solving rustlings ft. dracuxan
git clone [email protected]:dracuxan/rustlings.git
Log | Files | Refs

variables6.rs (123B)


      1 // The type of constants must always be annotated.
      2 const NUMBER: u64 = 3;
      3 
      4 fn main() {
      5     println!("Number: {NUMBER}");
      6 }