[master] [elm]

- add a hello world example for Elm ( from from http://elm-lang.org/examples/hello-html )
This commit is contained in:
Antonis Karamitros @antouank
2016-05-20 17:20:20 +01:00
parent 9f63e88962
commit a0ca8f90f1

4
e/hello-html.elm Normal file
View File

@@ -0,0 +1,4 @@
import Html exposing (text)
main =
text "Hello, World!"