Browse Source

main file

pull/2/head
jingxun 3 years ago
parent
commit
2e15b1e30c
  1. 22
      day05/many_day05/src/main.rs

22
day05/many_day05/src/main.rs

@ -0,0 +1,22 @@
/*
** encoding: utf-8
** @author: Jinguxn
** @contact: chenjin.qian@xquant.com
jingxun@lynchow.com
** @file: main.py
** @create-time: 2021-11-24 14:49
** @last-modified: 2021-11-24 14:49
** @description: Input here.
*/
use rand::Rng;
use many_day05::eat_at_restaurant;
use many_day05::front_of_house::hosting;
fn main() {
hosting::add_to_waitlist();
eat_at_restaurant();
let secret_num = rand::thread_rng().gen_range(1, 101);
println!("{}", secret_num);
}
Loading…
Cancel
Save