exercism/elixir/secret-handshake/secret_handshake.exs
anthony.cicchetti 5f9cd49d7a initial commit
2017-04-25 15:51:48 -04:00

21 lines
513 B
Elixir

defmodule SecretHandshake do
@doc """
Determine the actions of a secret handshake based on the binary
representation of the given `code`.
If the following bits are set, include the corresponding action in your list
of commands, in order from lowest to highest.
1 = wink
10 = double blink
100 = close your eyes
1000 = jump
10000 = Reverse the order of the operations in the secret handshake
"""
@spec commands(code :: integer) :: list(String.t())
def commands(code) do
end
end