Skip to content

ELA small systems language built for developer experience

Statically typed · garbage-collected · native AOT compilation through LLVM

main.ell
"Small language, big delight"
|> String.downcase()
|> String.replace(",", "")
|> String.split()
|> Enum.frequencies()
|> IO.println()
# %{"small" => 1, "language" => 1, "big" => 1, "delight" => 1}

EL — a small systems programming language built for developer experience