mirror of
https://github.com/rjNemo/exercism-elixir
synced 2026-06-10 04:16:43 +00:00
8 lines
185 B
Elixir
8 lines
185 B
Elixir
defmodule TwoFer do
|
|
@doc """
|
|
Two-fer or 2-fer is short for two for one. One for you and one for me.
|
|
"""
|
|
@spec two_fer(String.t()) :: String.t()
|
|
def two_fer(name) do
|
|
end
|
|
end
|