Current section

Files

Jump to
slack_elixir lib slack.ex
Raw

lib/slack.ex

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