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

  @doc """
  Hello world.

  ## Examples

      iex> TreeBitmap.hello()
      :world

  """
  def hello do
    :world
  end
end