2024-05-17 20:45:29 -07:00
|
|
|
# Usage Example
|
|
|
|
|
|
|
|
This example showcases how to bind library dependencies and execute the `Aesop`
|
|
|
|
tactic in Lean. First build the example project:
|
|
|
|
``` sh
|
|
|
|
pushd Example
|
|
|
|
lake build
|
|
|
|
popd
|
|
|
|
```
|
2024-05-17 20:56:01 -07:00
|
|
|
This would generate compiled `.olean` files. Then run the example from the
|
|
|
|
project root:
|
2024-05-17 20:45:29 -07:00
|
|
|
``` sh
|
2024-05-17 20:56:01 -07:00
|
|
|
poetry run examples/aesop.py
|
2024-05-17 20:45:29 -07:00
|
|
|
```
|
|
|
|
|