Packages

808s is the GOAT and you know it

Current section

Files

Jump to
carlo lib carlo.ex
Raw

lib/carlo.ex

defmodule Carlo do
@moduledoc """
Documentation for Carlo.
"""
@doc """
Hello world.
## Examples
iex> Carlo.hello
:world
"""
def hello do
:world
end
@doc """
That which I am gnot
## Examples
iex > Carlo.gnot
[:gnelf, :gnoblin]
"""
def gnot do
[:gnelf, :gnoblin]
end
@doc """
You have ___
## Examples
iex > Carlo.gnomed
:been
"""
def gnomed do
:been
end
@doc """
What do they have in common?
## Examples
iex > Carlo.favorite_rappers
[:drake, :tekashi69]
"""
def favorite_rappers do
[:drake, :tekashi69]
end
end