Skip to content

Latest commit

 

History

History
 
 

haskell

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

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