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