Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fgdorais/lean4-parser
Parser Combinator Library for Lean 4
https://github.com/fgdorais/lean4-parser
lean lean4
Last synced: 2 months ago
JSON representation
Parser Combinator Library for Lean 4
- Host: GitHub
- URL: https://github.com/fgdorais/lean4-parser
- Owner: fgdorais
- License: apache-2.0
- Created: 2023-01-08T21:16:12.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-31T13:46:11.000Z (6 months ago)
- Last Synced: 2024-07-31T17:00:17.698Z (6 months ago)
- Topics: lean, lean4
- Language: Lean
- Homepage:
- Size: 117 KB
- Stars: 32
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Lean 4 / Parser
A parser combinator library for [Lean 4](https://leanprover.github.io/).
## Installation
Add this dependency to your project's `lakefile.lean`:
```lean
require Parser from git "https://github.com/fgdorais/lean4-parser" @ "main"
```
Then add `import Parser` at the top of any Lean file where you plan to use this library.## Acknowledgements
Original work for the Lean 4 Parser library was done by [François G. Dorais](https://github.com/fgdorais), [Kyrill Serdyuk](https://github.com/lliryk), and [Emma Shroyer](https://github.com/emma-shroyer).
This work was partly supported by the CEMS REU program at The University of Vermont.-----
* The Parser library is copyright © 2022-2023 François G. Dorais, Kyrill Serdyuk, Emma Shroyer. The library is released under the [Apache 2.0 license](http://www.apache.org/licenses/LICENSE-2.0). See the file LICENSE for additional details.