elixir

#programming/elixir#programming#functional

Elixir

Elixir is a dynamic, functional language that runs on the Erlang VM (BEAM).

defmodule Greeter do
  def greet(name), do: "Hello, #{name}!"
end

IO.puts Greeter.greet("Elixir")

See Functional Programming · Concurrency · Programming Hub.