rustbook

Toy programs and snippets for The Rust Programming Language book
Log | Files | Refs

front_of_house.rs (116B)


      1 pub mod hosting;
      2 
      3 pub mod serving {
      4     fn take_order() {}
      5 
      6     pub fn serve_order() {}
      7 
      8     fn take_payment() {}
      9 }