diff options
| author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-08-09 15:02:27 +0200 | 
|---|---|---|
| committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-08-09 15:02:27 +0200 | 
| commit | 782ca010fbc57025e4c69fa71085bb6997af23c5 (patch) | |
| tree | 3d7f966848109e2e105d1962095cb1ccd93f166f /lib | |
Initial commit
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/mystic.ex | 18 | 
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/mystic.ex b/lib/mystic.ex new file mode 100644 index 0000000..1abf785 --- /dev/null +++ b/lib/mystic.ex @@ -0,0 +1,18 @@ +defmodule Mystic do +  @moduledoc """ +  Documentation for `Mystic`. +  """ + +  @doc """ +  Hello world. + +  ## Examples + +      iex> Mystic.hello() +      :world + +  """ +  def hello do +    :world +  end +end  |