Packages

Eventual home for the phoenix installer archive.

Retired package: Renamed - See phx_new instead

Current section

Files

Jump to
phx lib phx.ex
Raw

lib/phx.ex

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