Packages

To use protocol as type class in elixir.

Current section

Files

Jump to
hax lib hax.ex
Raw

lib/hax.ex

defmodule Hax do
@moduledoc """
Documentation for Hax.
"""
@doc """
Hello world.
## Examples
iex> Hax.hello
:world
"""
def hello do
:world
end
end