2019-06-03 18:34:15 +03:00
|
|
|
|
# semantic-core
|
|
|
|
|
|
|
|
|
|
Semantic core intermediate language (experimental)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Development
|
|
|
|
|
|
|
|
|
|
This project consists of a Haskell package named `semantic-core`. The library’s sources are in [`src`][].
|
|
|
|
|
|
2019-10-10 21:42:19 +03:00
|
|
|
|
Development of `semantic-core` is typically done using `cabal v2-build`:
|
2019-06-03 18:34:15 +03:00
|
|
|
|
|
|
|
|
|
```shell
|
2019-10-10 21:42:19 +03:00
|
|
|
|
cabal v2-build # build the library
|
|
|
|
|
cabal v2-repl # load the package into ghci
|
|
|
|
|
cabal v2-test # build and run the doctests
|
2019-06-03 18:34:15 +03:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
[`src`]: https://github.com/github/semantic/tree/master/semantic-core/src
|