mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-25 06:44:59 +00:00
5 lines
83 B
Elixir
5 lines
83 B
Elixir
defmodule Greeter do
|
|
def hello(name) do
|
|
IO.puts("Hello, #{name}!")
|
|
end
|
|
end
|