summaryrefslogtreecommitdiff
path: root/lib/irc.ex
blob: e322585b34176ea3403f35a828e192244bdd94ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
defmodule Irc do
  @moduledoc """
  Documentation for Irc.
  """

  @doc """
  Hello world.

  ## Examples

      iex> Irc.hello()
      :world

  """
  def hello do
    :world
  end
end