From a0ca8f90f1da247138c279d5d71472f5f2031024 Mon Sep 17 00:00:00 2001 From: "Antonis Karamitros @antouank" Date: Fri, 20 May 2016 17:20:20 +0100 Subject: [PATCH] [master] [elm] - add a hello world example for Elm ( from from http://elm-lang.org/examples/hello-html ) --- e/hello-html.elm | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 e/hello-html.elm diff --git a/e/hello-html.elm b/e/hello-html.elm new file mode 100644 index 00000000..8d383805 --- /dev/null +++ b/e/hello-html.elm @@ -0,0 +1,4 @@ +import Html exposing (text) + +main = + text "Hello, World!"