Packages

These pretzels are making me thirsty

Current section

Files

Jump to
crazy_pants lib crazy_pants.ex
Raw

lib/crazy_pants.ex

defmodule CrazyPants do
@moduledoc """
This is the greatest library ever written
"""
@doc """
This is the greatest function ever written
"""
@spec drop(binary) :: binary
def drop(location) do
"They're at the #{location}"
end
def num_drop() do
1
|> Integer.to_string()
|> drop()
end
end