defmodule Greeter do def talk(name) do IO.puts(greeting name) end defp greeting(name) do "Hello #{name}" end end