Browse Source

elm: add page (#2365)

mira01 6 years ago
parent
commit
bc6d1c1cb9
1 changed files with 15 additions and 0 deletions
  1. 15 0
      pages/common/elm.md

+ 15 - 0
pages/common/elm.md

@@ -0,0 +1,15 @@
+# elm
+
+> Run and manage programs in Elm programming language.
+
+- Start an interactive Elm shell (REPL):
+
+`elm --repl`
+
+- Initialize an empty Elm project:
+
+`elm --init`
+
+- Compile the current project and serve it via the local web server:
+
+`elm --reactor`