Packages

Elixir Scribe - A Mix Task to Generate Elixir and Phoenix Projects The Elixir Scribe tool aims to help developers to more easily write clean code in a clean software architecture for enhanced developer experience and productivity.

Current section

Files

Jump to
elixir_scribe lib elixir_scribe.ex
Raw

lib/elixir_scribe.ex

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