rustlings/exercises/20_threads
kingecg c40d940946 at strings 2025-09-23 22:33:47 +08:00
..
README.md at strings 2025-09-23 22:33:47 +08:00
threads1.rs at strings 2025-09-23 22:33:47 +08:00
threads2.rs at strings 2025-09-23 22:33:47 +08:00
threads3.rs at strings 2025-09-23 22:33:47 +08:00

README.md

Threads

In most current operating systems, an executed program's 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