elixir
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")
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")