aider/tests/fixtures/languages/elixir/greeter.ex

5 lines
83 B
Elixir

defmodule Greeter do
def hello(name) do
IO.puts("Hello, #{name}!")
end
end