Packages

Conjuncture expression for Landau programming language.

Current section

Files

Jump to
conjuncture lib conjuncture.ex
Raw

lib/conjuncture.ex

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