mirror of
https://github.com/Aider-AI/aider
synced 2026-04-30 11:27:50 +02:00
6 lines
83 B
Elixir
6 lines
83 B
Elixir
defmodule Greeter do
|
|
def hello(name) do
|
|
IO.puts("Hello, #{name}!")
|
|
end
|
|
end
|