Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/mikaello/test-reason-calculator
- Owner: mikaello
- License: mit
- Created: 2019-02-12T19:09:44.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-12T19:15:10.000Z (almost 6 years ago)
- Last Synced: 2024-10-05T16:22:32.319Z (3 months ago)
- Language: C++
- Homepage:
- Size: 34.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```