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