Current section
Files
Jump to
Current section
Files
lib/snakebridge.ex
defmodule Snakebridge do
@moduledoc """
Documentation for `Snakebridge`.
"""
@doc """
Hello world.
## Examples
iex> Snakebridge.hello()
:world
"""
def hello do
:world
end
end