Elixir-inspired syntax
Readable, low-ceremony surface syntax with `defmodule`, `def`, `|>`, and pattern matching.
Statically typed · garbage-collected · native AOT compilation through LLVM
"Small language, big delight"
|> String.downcase()
|> String.replace(",", "")
|> String.split()
|> Enum.frequencies()
|> IO.println()
# %{"small" => 1, "language" => 1, "big" => 1, "delight" => 1}