Current section

Files

Jump to
ex_line_wrapper lib ex_line_wrapper.ex
Raw

lib/ex_line_wrapper.ex

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