Current section

Files

Jump to
subaru lib mix tasks bench.ex
Raw

lib/mix/tasks/bench.ex

defmodule Mix.Tasks.Bench do
@moduledoc """
Runs benchmarks for the project.
## Examples
mix bench
"""
use Mix.Task
@shortdoc "Runs benchmarks"
def run(_args) do
IO.puts("hello world")
end
end