Packages

Toolbox that help to do trivial things faster. I have more free time for life

Current section

Files

Jump to
magik lib magik.ex
Raw

lib/magik.ex

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