Packages

This package is used for learning purposes on how to use 'mix' and 'hex' for sharing elixir code. Do NOT waste your time here. The License is MIT, but the project uses a private api.

Current section

Files

Jump to
cape lib cape.ex
Raw

lib/cape.ex

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