Packages

An general purpose data processing engine for the BEAM, written in Elixir.

Current section

Files

Jump to
jig lib jig.ex
Raw

lib/jig.ex

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