1
0
Fork 0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-05-13 01:26:09 +02:00

Merge pull request #1944 from Selflocking/patch-1

docs: add more info in threads
This commit is contained in:
liv 2024-04-08 22:48:43 +02:00 committed by GitHub
commit f3890cbae6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,3 +7,4 @@ Within your program, you can also have independent parts that run simultaneously
- [Dining Philosophers example](https://doc.rust-lang.org/1.4.0/book/dining-philosophers.html)
- [Using Threads to Run Code Simultaneously](https://doc.rust-lang.org/book/ch16-01-threads.html)
- [Using Message Passing to Transfer Data Between Threads](https://doc.rust-lang.org/book/ch16-02-message-passing.html)