summaryrefslogtreecommitdiff
path: root/exercises/20_threads
AgeCommit message (Collapse)Author
2024-04-24Merge branch 'main'mo8it
2024-04-17Clean up and unify exercisesmo8it
2024-04-11Remove "I AM NOT DONE" and the verify mode and add AppStatemo8it
2024-04-08docs: add more info in threadsYunShu
info.toml: ```toml [[exercises]] name = "threads3" path = "exercises/threads/threads3.rs" mode = "test" hint = """ An alternate way to handle concurrency between threads is to use a mpsc (multiple producer, single consumer) channel to communicate. With both a sending end and a receiving end, it's possible to send values in one thread and receive them in another. Multiple producers are possible by using clone() to create a duplicate of the original sending end. See https://doc.rust-lang.org/book/ch16-02-message-passing.html for more info. """ ``` threads3'hint contains this link, so it should be placed in Further Information
2024-03-27threads2: simplify threads2mo8it
2024-03-18Remove unneeded Arcmo8it
2023-10-16Update Exercises Directory Names to Reflect OrderAdam Brewer