Documentation
1
2
3
4
5
6
7
8
9
10
11
## thread POOL


nothing but for studying rust
```
        let pool = crate::ThreadPool::new(4);
        for i in 0..10 {
            pool.exec(move || {
                println!("hi {:#?}", i);
            })
        }
```