Packages

Ethereum's implementation in Elixir [WIP]

Current section

Files

Jump to
ethereum lib ethereum.ex
Raw

lib/ethereum.ex

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