Packages

A few sentences (a paragraph) describing the project.

Current section

Files

Jump to
pip lib pipe.ex
Raw

lib/pipe.ex

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