fust_tutorials 0.1.0

a fast rust tutorials
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod hosting {
    pub fn add_to_waitlist() {}
    fn seat_at_table() {}
}

pub mod serving {
    fn take_order(){}

    fn serve_order(){}

    fn take_payment(){}
}