Packages

Qx is an Elixir library providing convenient utilities and helpers for Elixir projects.

Current section

Files

Jump to
qx lib qx.ex
Raw

lib/qx.ex

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