rustlings

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

functions1.rs (161B)


      1 // TODO: Add some function with the name `call_me` without arguments or a return value.
      2 
      3 fn main() {
      4     call_me(); // Don't change this line
      5 }
      6 
      7 fn call_me() {}