Packages

Work with different noise functions using Elixir

Current section

Files

Jump to
noisex lib noisex.ex
Raw

lib/noisex.ex

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