From f7821637b943b2986fd99d5eda4b69621dd619d1 Mon Sep 17 00:00:00 2001 From: Richard Feldman Date: Sat, 11 Aug 2018 14:08:30 -0400 Subject: [PATCH] Fix part4 readme --- intro/part4/README.md | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/intro/part4/README.md b/intro/part4/README.md index bd69f36..48048f1 100644 --- a/intro/part4/README.md +++ b/intro/part4/README.md @@ -1,20 +1,13 @@ -# Part 3 +# Part 4 -This is just like last time, except first we'll install the `elm/browser` package so we can create an interactive app in the browser, instead of static HTML. - -To install the package, `cd` into the `part3/` directory and run: - -```shell -elm install elm/browser -``` - -Then build everything the same way as last time: +Build everything the same way as last time: ```shell elm make src/Main.elm --output elm.js ``` -Finally, open `index.html` in your browser. +No need to open `index.html` in your browser, since this time the exercise +is only about compiling! ## Exercise