Packages

An Elixir nREPL client.

Current section

Files

Jump to
nrepl lib n_repl.ex
Raw

lib/n_repl.ex

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