Packages

A WIP Elixir(script) framework

Current section

Files

Jump to
griffin lib griffin griffin.ex
Raw

lib/griffin/griffin.ex

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