Hello Elm World

Hello, Elm world!

I wrote my first program using elm

module Main exposing (...)
import Html exposing (text)

main = 
  text "Hello, Elm world!"
  

Run the following command from the terminal to view the message

elm reactor

💡 I came across this wonderful resource on elm programming.