diff options
Diffstat (limited to 'exercises/20_threads/threads2.rs')
| -rw-r--r-- | exercises/20_threads/threads2.rs | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/exercises/20_threads/threads2.rs b/exercises/20_threads/threads2.rs index 60d6824..2bdeba9 100644 --- a/exercises/20_threads/threads2.rs +++ b/exercises/20_threads/threads2.rs @@ -1,13 +1,6 @@ -// threads2.rs -// // Building on the last exercise, we want all of the threads to complete their // work but this time the spawned threads need to be in charge of updating a // shared value: JobStatus.jobs_completed -// -// Execute `rustlings hint threads2` or use the `hint` watch subcommand for a -// hint. - -// I AM NOT DONE use std::sync::Arc; use std::thread; |
