You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
446 B
Plaintext

# To install:
# Go to http://elm-lang.org/install
# and download the appropriate installer for your system.
# To create a project:
# mkdir hello
# cd hello
# elm package install elm-lang/html
# after that create Hello.elm in this directory
# To start:
# elm reactor
# Read more here:
# https://www.elm-tutorial.org/en/01-foundations/01-hello.html
module Hello exposing (..)
import Html exposing (text)
main =
text "Hello"