diff options
author | Melody Horn <melody@boringcactus.com> | 2021-03-15 06:17:25 -0600 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2021-03-15 06:17:25 -0600 |
commit | a106c948c2056cb855ae6603842c5c165f03d716 (patch) | |
tree | a3b94b924ebf3d487ce3a14b7c1f1b3eae7b0610 /lib | |
download | hope-elixir.tar.gz hope-elixir.zip |
initialize Elixir projectelixir
Diffstat (limited to 'lib')
-rw-r--r-- | lib/hope.ex | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/hope.ex b/lib/hope.ex new file mode 100644 index 0000000..7f4e66f --- /dev/null +++ b/lib/hope.ex @@ -0,0 +1,18 @@ +defmodule Hope do + @moduledoc """ + Documentation for `Hope`. + """ + + @doc """ + Hello world. + + ## Examples + + iex> Hope.hello() + :world + + """ + def hello do + :world + end +end |