mirror of
https://github.com/mainmatter/100-exercises-to-learn-rust
synced 2024-12-25 21:58:26 +01:00
Update guidance in 08/04.
This commit is contained in:
parent
f671914dfb
commit
804b275b06
2 changed files with 8 additions and 0 deletions
7
Cargo.lock
generated
7
Cargo.lock
generated
|
@ -453,6 +453,13 @@ version = "0.1.0"
|
|||
name = "outro_04"
|
||||
version = "0.1.0"
|
||||
|
||||
[[package]]
|
||||
name = "outro_08"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"tokio",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "overflow"
|
||||
version = "0.1.0"
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
//! TODO: get the code to compile by **re-ordering** the statements
|
||||
//! in the `example` function. You're not allowed to change the
|
||||
//! `spawner` function nor what each line does in `example`.
|
||||
//! You can wrap existing statements in blocks `{}` if needed.
|
||||
use std::rc::Rc;
|
||||
use tokio::task::yield_now;
|
||||
|
||||
|
|
Loading…
Reference in a new issue