Packages

Scientific Library for Elixir

Current section

Files

Jump to
ex_sci lib ex_sci.ex
Raw

lib/ex_sci.ex

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