rustlings

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

variables6.rs (130B)


      1 // TODO: Change the line below to fix the compiler error.
      2 const NUMBER: i32 = 3;
      3 
      4 fn main() {
      5     println!("Number: {NUMBER}");
      6 }