mirror of
https://github.com/correl/elm.git
synced 2024-11-25 11:09:53 +00:00
1e5530ba48
We've had some difficulty coming up with a good name for the file that gets included in all of the exercise READMEs for a given track. These are global hints, like how to run the test suite, which are relevant to all the exercises on a track. We started with SETUP.md in the root of the repository, then renamed that to exercises/TRACK_HINTS.md because SETUP.md was misleading and confusing, but then we realized that TRACK_HINTS.md was a bit ambiguous and confusing as well. Finally we settled on putting the file in the docs directory, since this is user-facing documentation, and calling the file EXERCISE_README_INSERT.md See https://github.com/exercism/meta/issues/5 for context.
19 lines
341 B
Markdown
19 lines
341 B
Markdown
## Elm Installation
|
|
|
|
Refer to the [Exercism help page](http://exercism.io/languages/elm) for Elm
|
|
installation and learning resources.
|
|
|
|
## Writing the Code
|
|
|
|
The first time you start an exercise, you'll need to ensure you have the
|
|
appropriate dependencies installed.
|
|
|
|
```bash
|
|
$ npm install
|
|
```
|
|
|
|
Execute the tests with:
|
|
|
|
```bash
|
|
$ npm test
|
|
```
|