https://github.com/initdc/harec
https://github.com/initdc/harec
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/initdc/harec
- Owner: initdc
- License: gpl-3.0
- Created: 2022-12-09T05:51:16.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T05:51:33.000Z (over 3 years ago)
- Last Synced: 2025-06-14T18:58:12.681Z (10 months ago)
- Language: C
- Size: 1.01 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# harec
This is a [Hare](https://harelang.org) compiler written in C11 for
POSIX-compatible systems.
## Build status
## Building
```
mkdir build
cd build
../configure
make
```
Optionally, build and run the test suite as well:
```
make check
```
## Runtime
harec includes a minimal runtime under `rt` which is suitable for running the
test suite, but not recommended for production use. See `docs/runtime.txt` for
details on how to provide your own runtime implementation, or use the [Hare
standard library](https://git.sr.ht/~sircmpwn/hare).