Current section
Files
Jump to
Current section
Files
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