Elm is a programming language. It is a purely functional language that compiles to JavaScript. Developers can use this language for different purposes.
Some of the services of Elm language are as follows:
Some benefits of using a functional language like Elm are as follows:
Below is a simple hello world program in Elm language:
{ "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", "elm/time": "1.0.0", "elm/http": "2.0.0", "elm/json": "1.1.3" }, "indirect": { "elm/url": "1.0.0", "elm/virtual-dom": "1.0.2", "elm/bytes": "1.0.8", "elm/file": "1.0.5" } }, "test-dependencies": { "direct": {}, "indirect": {} } }
Html exposing (text)
library for printing text.Hello, World!
.Free Resources