blob: f8bc2d2f80e903125b2e7074696739287eeb38e6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
defmodule Lithium do
@moduledoc """
Documentation for `Lithium`.
"""
@doc """
Hello world.
## Examples
iex> Lithium.hello()
:world
"""
def hello do
:world
end
end
|