Packages

Elixir binding to libffi built on top of Rust binding to libffi

Current section

Files

Jump to
exotic lib exotic.ex
Raw

lib/exotic.ex

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