Current section

Files

Jump to
orb_wasmtime lib orb_wasmtime.ex
Raw

lib/orb_wasmtime.ex

defmodule OrbWasmtime do
@moduledoc """
Execute WebAssembly via Wasmtime.
"""
@doc """
Hello world.
## Examples
iex> OrbWasmtime.hello()
:world
"""
def hello do
:world
end
end