lib/test_animal_sounds.ex

defmodule TestAnimalSounds do
  @moduledoc """
  Documentation for `TestAnimalSounds`.
  """

  @doc """
  ## Examples

      iex> AnimalSounds.cow()
      "Mooo"

  """
  def cow do
    "Mooo"
  end

  @doc """
  ## Examples

      iex> AnimalSounds.chicken()
      "Cluck cluck"

  """
  def chicken do
    "Cluck cluck"
  end

  @doc """
  ## Examples

      iex> AnimalSounds.pig()
      "Oink"

  """
  def pig do
    "Oink"
  end

end