rust-rustlings-Gege-Wang/exercises/threads
github-classroom[bot] 81b66a6126
Initial commit
2023-04-02 07:52:18 +00:00
..
README.md Initial commit 2023-04-02 07:52:18 +00:00
threads1.rs Initial commit 2023-04-02 07:52:18 +00:00
threads2.rs Initial commit 2023-04-02 07:52:18 +00:00
threads3.rs Initial commit 2023-04-02 07:52:18 +00:00

README.md

Threads

In most current operating systems, an executed programs code is run in a process, and the operating system manages multiple processes at once. Within your program, you can also have independent parts that run simultaneously. The features that run these independent parts are called threads.

Further information