nim-chronos/docs/src/getting_started.md

20 lines
237 B
Markdown
Raw Normal View History

## Getting started
Install `chronos` using `nimble`:
```text
nimble install chronos
```
or add a dependency to your `.nimble` file:
```text
requires "chronos"
```
and start using it:
```nim
{{#include ../examples/httpget.nim}}
```