浏览代码

added empty elm project

Brandon Wong 7 年之前
父节点
当前提交
43b0e37353
共有 2 个文件被更改,包括 28 次插入0 次删除
  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
+        }
+
+