Current section

Files

Jump to
combo lib combo.ex
Raw

lib/combo.ex

defmodule Combo do
@moduledoc """
Documentation for `Combo`.
"""
@doc """
Hello world.
## Examples
iex> Combo.hello()
:world
"""
def hello do
:world
end
end