Ver código fonte

added empty elm project

Brandon Wong 7 anos atrás
pai
commit
43b0e37353
2 arquivos alterados com 28 adições e 0 exclusões
  1. 3 0
      elm/.gitignore
  2. 25 0
      elm/Main.elm

+ 3 - 0
elm/.gitignore

@@ -0,0 +1,3 @@
+.idea
+*.swp
+elm-stuff

+ 25 - 0
elm/Main.elm

@@ -0,0 +1,25 @@
+
+module $foldername exposing (..)
+
+import Html exposing (..)
+import Html.Events exposing (..)
+import Html.Attributes exposing (id, class, classList)
+
+
+view model =
+    div
+        []
+        [ text "$foldername" ]
+
+update msg model =
+    ( model, Cmd.none )
+
+main =
+    Html.program
+        { init = ("", Cmd.none)
+        , view = view
+        , update = update
+        , subscriptions = \_ -> Sub.none
+        }
+
+