Current section
Files
Jump to
Current section
Files
lib/igc.ex
defmodule IGC do
@moduledoc """
Documentation for `IGC`.
"""
@doc """
Hello world.
## Examples
iex> IGC.hello()
:world
"""
def hello do
:world
end
end