Sha256: c80abca06e6b6d78253d556c85121e5e671083cf4b536f44e9c518fc5b3d55f7

Contents?: true

Size: 1.43 KB

Versions: 116

Compression:

Stored size: 1.43 KB

Contents

# List Ops

Implement basic list operations.

In functional languages list operations like `length`, `map`, and
`reduce` are very common. Implement a series of basic list operations,
without using existing functions.


## Getting Started

For installation and learning resources, refer to the
[exercism help page](http://exercism.io/languages/haskell).

## Running the tests

To run the test suite, execute the following command:

```bash
stack test
```

#### If you get an error message like this...

```
No .cabal file found in directory
```

You are probably running an old stack version and need
to upgrade it.

#### Otherwise, if you get an error message like this...

```
No compiler found, expected minor version match with...
Try running "stack setup" to install the correct GHC...
```

Just do as it says and it will download and install
the correct compiler version:

```bash
stack setup
```

## Running *GHCi*

If you want to play with your solution in GHCi, just run the command:

```bash
stack ghci
```

## Feedback, Issues, Pull Requests

The [exercism/haskell](https://github.com/exercism/haskell) repository on
GitHub is the home for all of the Haskell exercises.

If you have feedback about an exercise, or want to help implementing a new
one, head over there and create an issue.  We'll do our best to help you!


## Submitting Incomplete Solutions
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

Version data entries

116 entries across 116 versions & 1 rubygems

Version Path
trackler-2.2.1.30 tracks/haskell/exercises/list-ops/README.md
trackler-2.2.1.29 tracks/haskell/exercises/list-ops/README.md
trackler-2.2.1.28 tracks/haskell/exercises/list-ops/README.md
trackler-2.2.1.27 tracks/haskell/exercises/list-ops/README.md
trackler-2.2.1.26 tracks/haskell/exercises/list-ops/README.md
trackler-2.2.1.25 tracks/haskell/exercises/list-ops/README.md
trackler-2.2.1.24 tracks/haskell/exercises/list-ops/README.md
trackler-2.2.1.23 tracks/haskell/exercises/list-ops/README.md
trackler-2.2.1.22 tracks/haskell/exercises/list-ops/README.md
trackler-2.2.1.21 tracks/haskell/exercises/list-ops/README.md
trackler-2.2.1.20 tracks/haskell/exercises/list-ops/README.md
trackler-2.2.1.19 tracks/haskell/exercises/list-ops/README.md
trackler-2.2.1.18 tracks/haskell/exercises/list-ops/README.md
trackler-2.2.1.17 tracks/haskell/exercises/list-ops/README.md
trackler-2.2.1.16 tracks/haskell/exercises/list-ops/README.md
trackler-2.2.1.15 tracks/haskell/exercises/list-ops/README.md
trackler-2.2.1.14 tracks/haskell/exercises/list-ops/README.md
trackler-2.2.1.13 tracks/haskell/exercises/list-ops/README.md
trackler-2.2.1.12 tracks/haskell/exercises/list-ops/README.md
trackler-2.2.1.11 tracks/haskell/exercises/list-ops/README.md