packages feed

calculator-0.4.0.2: README.md

# Calculator

A calculator repl.

## Features

- Arithmetic
- Standard mathematical functions
- Variable bindings
- Function bindings
  - Single argument functions
  - Multiple argument functions
- Plotting (Optional)
  - Static plots (no animation)
  - Dynamic plots (for multiple argument functions)

## Installation

```bash
$ stack install calculator
```

## Implementation

* Written in haskell
* Parsing done using [parsec](https://hackage.haskell.org/package/parsec)
* Repl built using [haskeline](https://hackage.haskell.org/package/haskeline)
* Colored output using ANSI color codes

## Usage

    Use :? to view usage instructions.

## Thanks

* Thanks to [husky](https://github.com/markusle/husky) for color output.