Current section
Files
Jump to
Current section
Files
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