rustlings

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

variables1.rs (122B)


      1 fn main() {
      2     // Declaring variables requires the `let` keyword.
      3     let x = 5;
      4 
      5     println!("x has the value {x}");
      6 }