No description
Find a file
2014-08-15 18:52:15 +02:00
mario added baseic files 2014-08-15 17:17:47 +02:00
todo added todo example, along with required experimental code 2014-08-15 17:30:52 +02:00
.gitignore ignore cabal and elm generated files 2014-08-15 17:17:28 +02:00
Clock.elm added baseic files 2014-08-15 17:17:47 +02:00
README.md name change 2014-08-15 18:52:15 +02:00
setup.sh name change 2014-08-15 18:52:15 +02:00

elm-examples

Welcome to the starter kit!

Let's get to playing around with Elm and it's interactive debugger.

Before we do anything:

mkdir elm-starter-kit
cd elm-starter-kit

First, we need the latest copy of elm and the reactor (the new debugger)

git clone git@github.com:elm-lang/Elm.git
git clone git@github.com:elm-lang/elm-reactor.git
git clone git@github.com:michaelbjames/elm-examples.git

Next we need to build each

cd elm
cabal sandbox init
cabal install --only-dependencies; cabal configure; cabal build; cabal install
cd ../elm-reactor
cabal sandbox init
cabal sandbox add-source ../elm
cabal install --only-dependencies; cabal configure; cabal build; cabal install
cd ../elm-examples/todo
elm --make --only-js Todo.elm
cd ..
../elm-reactor/dist/build/elm-reactor/elm-reactor

Let's try it out!