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