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