blob: a74e2fd1eccc0f3eca949c2529e7495492155b10 (
plain)
1
2
3
4
5
6
7
8
9
10
|
Solution by Alexander Pankoff
# Run the Haskell solution
With a `ghc` installation you can run the haskell solution with `runghc`
```
$ runghc haskell/ch-1.hs 1 2 3 -1 4
5
```
|