
- add a hello world example for Elm ( from from http://elm-lang.org/examples/hello-html )
5 lines
59 B
Elm
5 lines
59 B
Elm
import Html exposing (text)
|
|
|
|
main =
|
|
text "Hello, World!"
|