Last active
February 21, 2019 11:03
-
-
Save groteck/85462b3576c23682fb3f6b2194c57bce to your computer and use it in GitHub Desktop.
Elm ctags
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
port module Main exposing (..) | |
import List | |
import Maybe exposing (withDefault) | |
import Json.Encode as Je | |
type Thing | |
= One | |
| Two Int | |
type Param a | |
= Cons a | |
| Other a | |
type alias Num = | |
Int | |
port outward : String -> Cmd a | |
port inward : (b -> a) -> Sub a | |
foo : Int -> Int | |
foo a = | |
a + 1 | |
fooMultiLine : | |
Int | |
-> Int | |
fooMiltiLine a = | |
a + 1 | |
bar = | |
let | |
bas = | |
1 | |
in | |
bas |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment