Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/raehik/expr-ssa
https://github.com/raehik/expr-ssa
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/raehik/expr-ssa
- Owner: raehik
- License: bsd-3-clause
- Created: 2021-03-16T10:16:32.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-21T05:50:43.000Z (over 2 years ago)
- Last Synced: 2024-06-11T18:31:17.041Z (7 months ago)
- Language: Haskell
- Size: 19.5 KB
- Stars: 0
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog.md
- License: LICENSE
Awesome Lists containing this project
README
# expr-ssa
A program written in Haskell which compiles simple expressions to SSA (single
static assignment) programs.Originally used to demonstrate GitHub Actions for undergraduates at University
of Kent 2021.## Building and testing
This is a Haskell project built using Cabal, a package management tool for
Haskell. Assuming you have Cabal and a version of the GHC Haskell compiler
installed, running the following command in the base repository directory will
build the library:cabal build
To build and run tests (with nicer output):
cabal test --test-show-details=streaming
Note that `cabal test` will run `cabal build` behind the scenes as needed, so
you don't need both.### Using Stack
Alternatively, if you have Stack installed (another Haskell package management
tool), you may runstack test
for the same result.