Packages

A brief description of your MECP package. Replace this with an actual description of what your package does.

Current section

Files

Jump to
mecp lib mecp.ex
Raw

lib/mecp.ex

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