diff options
author | Jordan Bracco <href@random.sh> | 2021-11-12 00:15:31 +0100 |
---|---|---|
committer | Jordan Bracco <href@random.sh> | 2021-11-12 00:15:31 +0100 |
commit | 3c6471ed8174b870f8d463e8f39a781f8c731471 (patch) | |
tree | f304ec29b980883387cba56033fabaffaf6cd2fd /lib/tree_bitmap.ex |
initial commit
Diffstat (limited to '')
-rw-r--r-- | lib/tree_bitmap.ex | 18 |
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 |