Add support for Elm language
Brought to you by:
alnd
Elm is a functional programming language with a Haskell-like syntax.
-- this is a comment
render : List Tx -> Html
render lst =
ul [] (List.map (\tx -> li [] [text tx.id, text " ", text <| toString tx.valueOut]) lst)
{-
multi-line comment
-}
model : Signal (List Tx)
model = Signal.foldp update [] (Signal.map decodeTx mailbox.signal)
Anonymous
View and moderate all "feature-requests Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Feature Requests"
Website: http://elm-lang.org/
Thanks for the concise description of Elm's important features. I'll add support but note development has moved to https://github.com/AlDanial/cloc/ and the code will be updated there.
I opened cloc in an editor with the intent to add Elm then saw I already implemented it a while back. You can grab the latest version, 1.66, from https://github.com/AlDanial/cloc/releases