elm-lang
Elm, from scratch in Java
Demos
Gallery
JS vs WASM
Playground
Game of Life
Editor
TodoMVC
RTS Mini game
Guides
Examples
Shell scripting in Elm
Server-side Elm
Backends
The build tool (`elm build`)
Splitting large source files
Language coverage
Bundled libraries
Language server (`elm lsp`)
Static site generation in Elm
Source on GitHub
Hello
HTML
Live JS (compiled)
Open demo in a new tab ↗
Source
module Hello exposing (main) import Html exposing (text) main = text "Hello!"