hello-world/lib/main.ex

6 lines
97 B
Elixir
Raw Normal View History

2023-04-16 18:24:44 +00:00
defmodule HelloWorld do
def hello_world(name) do
IO.puts "Hello, World! #{name}"
end
end