rust-concurrency
Installation
SKILL.md
Rust Concurrency Skill
Master thread-based concurrency: threads, channels, synchronization, and parallel processing.
Quick Start
Threads
use std::thread;
let handle = thread::spawn(|| {
println!("Hello from thread!");
42
});
let result = handle.join().unwrap();