Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mikaello/test-reason-calculator

Result of going through a ReasonML tutorial https://github.com/relekang/reason-calculator
https://github.com/mikaello/test-reason-calculator

Last synced: 23 days ago
JSON representation

Result of going through a ReasonML tutorial https://github.com/relekang/reason-calculator

Awesome Lists containing this project

README

        

# calc

[![CircleCI](https://circleci.com/gh/yourgithubhandle/calc/tree/master.svg?style=svg)](https://circleci.com/gh/yourgithubhandle/calc/tree/master)

**Contains the following libraries and executables:**

```
[email protected]

├─test/
│ name: TestCalc.exe
│ main: TestCalc
│ require: calc.lib

├─library/
│ library name: calc.lib
│ namespace: Calc
│ require:

└─executable/
name: CalcApp.exe
main: CalcApp
require: calc.lib
```

## Developing:

```
npm install -g esy
git clone
esy install
esy build
```

## Running Binary:

After building the project, you can run the main binary that is produced.

```
esy x CalcApp.exe
```

## Running Tests:

```
# Runs the "test" command in `package.json`.
esy test
```