debtmap 0.16.3

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

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