Skip to content

Commit bc6cad4

Browse files
committed
update README: build & run
1 parent c645a58 commit bc6cad4

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
# asyncio
22
Asyncio is a C++20 coroutine library to write concurrent code using the await syntax, and imitate python asyncio library.
33

4+
## Build & Run
5+
```shell
6+
$ git clone --recursive https://github.com/netcan/asyncio.git
7+
$ cd asyncio
8+
$ mkdir build
9+
$ cd build
10+
$ cmake ..
11+
$ make -j
12+
```
13+
414
## Hello world
515
```cpp
616
Task<> hello_world() {

0 commit comments

Comments
 (0)