Packages

BENCH performance tool for distributed systems

Current section

Files

Jump to
bench lib bench.ex
Raw

lib/bench.ex

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