Sha256: afb2b7f846c1f3f7ed90b540c265b641ed9e1892a1bcab334424ce2f91158067
Contents?: true
Size: 1.64 KB
Versions: 50
Compression:
Stored size: 1.64 KB
Contents
# Lens Person Use lenses to update nested records (specific to languages with immutable data). Updating fields of nested records is kind of annoying in Haskell. One solution is to use [lenses](https://wiki.haskell.org/Lens). Implement several record accessing functions using lenses, you may use any library you want. The test suite also allows you to avoid lenses alltogether so you can experiment with different approaches. ## 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
50 entries across 50 versions & 1 rubygems