rustlings

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

functions1.rs (155B)


      1 // Some function with the name `call_me` without arguments or a return value.
      2 fn call_me() {
      3     println!("Hello world!");
      4 }
      5 
      6 fn main() {
      7     call_me();
      8 }