Files
elm-0.19-workshop/intro/part1/README.md
Richard Feldman c2ce139c69 Add intro/part1
2018-08-09 02:21:32 -04:00

20 lines
474 B
Markdown

# Part 1
To build everything, `cd` into the `part1/` directory and run:
```shell
elm make Main.elm --output elm.js
```
This will compile your Main.elm file into `elm.js`, which gets loaded by
`index.html`.
Then open `index.html` in your browser.
## Exercise
Open `Main.elm` in your editor and resolve the TODOs there.
After you complete each one, re-run `elm make Main.elm --output elm.js` to
recompile the `elm.js` file, then refresh the browser to see the results!