aboutsummaryrefslogtreecommitdiff
path: root/lib/tree_bitmap.ex
diff options
context:
space:
mode:
authorJordan Bracco <href@random.sh>2021-11-12 00:15:31 +0100
committerJordan Bracco <href@random.sh>2021-11-12 00:15:31 +0100
commit3c6471ed8174b870f8d463e8f39a781f8c731471 (patch)
treef304ec29b980883387cba56033fabaffaf6cd2fd /lib/tree_bitmap.ex
initial commit
Diffstat (limited to '')
-rw-r--r--lib/tree_bitmap.ex18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/tree_bitmap.ex b/lib/tree_bitmap.ex
new file mode 100644
index 0000000..6d1bc07
--- /dev/null
+++ b/lib/tree_bitmap.ex
@@ -0,0 +1,18 @@
+defmodule TreeBitmap do
+ @moduledoc """
+ Documentation for `TreeBitmap`.
+ """
+
+ @doc """
+ Hello world.
+
+ ## Examples
+
+ iex> TreeBitmap.hello()
+ :world
+
+ """
+ def hello do
+ :world
+ end
+end