Skip to content

Latest commit

 

History

History
60 lines (44 loc) · 1.08 KB

readme.md

File metadata and controls

60 lines (44 loc) · 1.08 KB

Haskell Binding for Isocline

You can build and run the example program as:

$ ghc -ihaskell test/Example.hs src/isocline.c
$ ./test/Example

See the API documentation on hackage.

Using with Stack

You can build with isocline by adding

extra-deps:
  - isocline-<version>    

to your stack.yaml file, and

dependencies:
  - isocline

to your package.yaml file (and also run stack update).

Using with Cabal

To use it with Cabal, add

build-depends:
  isocline

to your project.cabal file (and perhaps run cabal update).

Building Isocline from Source

Building with Stack

From the isocline directory, run:

$ stack build
$ stack exec example

Building with Cabal

From the isocline directory, run:

$ cabal build
$ cabal run example

You can install the locally build isocline package as:

$ cabal install