elm環境作成(その2)

elmの環境ができたと思っていたら、
gen/pages/examples
hello world!コンパイルで失敗した。

ネットで検索するとパッケージが足りていないらしい。
ELMはじめの一歩 - Qiita

そこで、
Git - Downloads
からgitをgetし、インストールした。

そして、elm-package install evancz/elm-html でパッケージを取得し、

elm-make hello.elm --output hello.html

コンパイルすると成功した。

これで、本当にスタートラインに立てたかな。