1
1
mirror of https://github.com/tweag/nickel.git synced 2024-11-10 19:09:08 +03:00
nickel/pyckel/README.md

22 lines
202 B
Markdown
Raw Normal View History

# pyckel
Python bindings to use Nickel.
## Install
```shell
2023-01-13 13:25:11 +03:00
pip install .
```
## Use
```python
import pyckel
result = pyckel.run("let x = 1 in { y = x + 2 }")
print(result)
# {
# "y": 3
# }
```