forked from mirror/async-std
create readme in examples directory
This commit is contained in:
parent
785371cbc4
commit
3db7631a7d
1 changed files with 23 additions and 0 deletions
23
examples/README.md
Normal file
23
examples/README.md
Normal file
|
@ -0,0 +1,23 @@
|
|||
# `async-std` Examples
|
||||
|
||||
This directory contains example code that makes use of `async-std`.
|
||||
|
||||
Each example can be run from the command line.
|
||||
|
||||
For example, [Hello World][hello-world] can be run by running the following:
|
||||
|
||||
```
|
||||
cargo run --example hello-world
|
||||
```
|
||||
|
||||
- [Hello World][hello-world]
|
||||
|
||||
Spawns a task that says hello.
|
||||
|
||||
- [Line Count][line-count]
|
||||
|
||||
Counts the number of lines in a file given as an argument.
|
||||
|
||||
[hello-world]: https://github.com/async-rs/async-std/blob/master/examples/hello-world.rs
|
||||
[line-count]: https://github.com/async-rs/async-std/blob/master/examples/line-count.rs
|
||||
<!-- [list-dir]: https://github.com/async-rs/async-std/blob/master/examples/list-dir.rs -->
|
Loading…
Reference in a new issue