Skip to content

Instantly share code, notes, and snippets.

@bkerley
Created October 19, 2015 22:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bkerley/2cb64a6c31ea06208f0c to your computer and use it in GitHub Desktop.
Save bkerley/2cb64a6c31ea06208f0c to your computer and use it in GitHub Desktop.
defmodule Simple do
@doc ~S"""
# Example
iex> Simple.toot()
:toooot
"""
def toot() do
:toooot
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment