rustlings

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

variables3.rs (126B)


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