Add intro/part1

This commit is contained in:
Richard Feldman
2018-08-09 01:32:05 -04:00
parent d879bd17cd
commit c2ce139c69
47 changed files with 11331 additions and 0 deletions

19
intro/part1/README.md Normal file
View File

@@ -0,0 +1,19 @@
# 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!