debtmap 0.18.0

Code complexity and technical debt analyzer
Documentation
1
2
3
4
5
6
7
use std::thread;

fn spawn_worker() {
    thread::spawn(|| {
        println!("Working");
    });
}