2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-01 21:40:24 +00:00
cheat.sheets/sheets/_elm/hello

19 lines
442 B
Plaintext
Raw Normal View History

2017-06-15 18:13:18 +00:00
# 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"