2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-03 15:40:17 +00:00
cheat.sheets/sheets/_elm/hello
terminalforlife ade78aaafb Mass-replace tabs with 4-width spacing
This seems to be the predominant choice, and matches the last commit I
just made, so I went ahead and converted them all, and changed any, -
for example, 2-space indents.

Let me know if this is undesired.

To understand why I chose to do this, please refer to the previous
commit's message.
2020-03-01 00:21:26 +00:00

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"