Responses for exercises in Exercism.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
631 B

defmodule Lasagna do
@spec expected_minutes_in_oven() :: integer()
def expected_minutes_in_oven do
40
end
@spec remaining_minutes_in_oven(integer()) :: integer()
def remaining_minutes_in_oven(elapsed) do
expected_minutes_in_oven() - elapsed
end
@spec preparation_time_in_minutes(integer()) :: integer()
def preparation_time_in_minutes(layers) do
layers * 2
end
@spec total_time_in_minutes(integer(), integer()) :: integer()
def total_time_in_minutes(layers, minutes) do
preparation_time_in_minutes(layers) + minutes
end
@spec alarm() :: String.t()
def alarm do
"Ding!"
end
end