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