Skip to content

Commit

Permalink
add a sample project
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHicks committed Oct 25, 2019
1 parent f7f48b9 commit eec76d5
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 0 deletions.
1 change: 1 addition & 0 deletions sample-projects/elm/.gitignore
@@ -0,0 +1 @@
elm-stuff
3 changes: 3 additions & 0 deletions sample-projects/elm/README.md
@@ -0,0 +1,3 @@
# Elm Sample Project

A sample project for me to test completions and stuff in
24 changes: 24 additions & 0 deletions sample-projects/elm/elm.json
@@ -0,0 +1,24 @@
{
"type": "application",
"source-directories": [
"src"
],
"elm-version": "0.19.0",
"dependencies": {
"direct": {
"elm/browser": "1.0.1",
"elm/core": "1.0.2",
"elm/html": "1.0.0"
},
"indirect": {
"elm/json": "1.1.3",
"elm/time": "1.0.0",
"elm/url": "1.0.0",
"elm/virtual-dom": "1.0.2"
}
},
"test-dependencies": {
"direct": {},
"indirect": {}
}
}
8 changes: 8 additions & 0 deletions sample-projects/elm/src/Main.elm
@@ -0,0 +1,8 @@
module Main exposing (main)

import Html
import One


main =
Html.text "Hello, World"
18 changes: 18 additions & 0 deletions sample-projects/elm/src/One.elm
@@ -0,0 +1,18 @@
module One exposing (..)

{-| Module docs!
@docs one
-}


{-| Hey, this is just the number one with a fancy docstring.
one
--> 1
-}
one : Int
one =
1

0 comments on commit eec76d5

Please sign in to comment.