dnadales / xhaskell

Exercism Exercises in Haskell

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

xHaskell

Build Status

Exercism exercises in Haskell

Contributing Guide

Please see the contributing guide

Development Dependencies

You should have Stack installed in your system to make contributing to this repository easier.

Exercises

All exercises have the following structure:

  • stack.yaml has just one line specifying the current Stack snapshot. We use the same resolver for all the exercises.
  • package.yaml is a file in the hpack format that has all dependencies and build instructions for an exercise.
  • src/Example.hs is a sample solution passing the tests.
  • src/ModuleName.hs is a stub solution.
  • test/Tests.hs is the test suite.

Running Tests

Rename the file src/Example.hs to match the module name and run:

stack test --pedantic

If the stub solution is still in the /src folder, build will probably fail.

License

The MIT License (MIT)

Copyright (c) 2014 Katrina Owen, _@kytrinyx.com

About

Exercism Exercises in Haskell

License:MIT License


Languages

Language:Haskell 99.7%Language:Shell 0.3%