From 3a5624df0cb36bf9b2dcba864fdf8c876f7f1999 Mon Sep 17 00:00:00 2001 From: "exercism-solutions-syncer[bot]" <211797793+exercism-solutions-syncer[bot]@users.noreply.github.com> Date: Fri, 28 Nov 2025 16:23:33 +0000 Subject: [PATCH] [Sync Iteration] gleam/lasagna/1 --- solutions/gleam/lasagna/1/src/lasagna.gleam | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 solutions/gleam/lasagna/1/src/lasagna.gleam diff --git a/solutions/gleam/lasagna/1/src/lasagna.gleam b/solutions/gleam/lasagna/1/src/lasagna.gleam new file mode 100644 index 0000000..6d12730 --- /dev/null +++ b/solutions/gleam/lasagna/1/src/lasagna.gleam @@ -0,0 +1,10 @@ +// Please define the expected_minutes_in_oven function +pub fn expected_minutes_in_oven() -> Int { 40 } +// Please define the remaining_minutes_in_oven function +pub fn remaining_minutes_in_oven(x: Int) -> Int { expected_minutes_in_oven() - x } +// Please define the preparation_time_in_minutes function +pub fn preparation_time_in_minutes(x: Int) { x * 2 } +// Please define the total_time_in_minutes function +pub fn total_time_in_minutes(x, y: Int) { preparation_time_in_minutes(x) + y} +// Please define the alarm function +pub fn alarm() -> String { "Ding!" } \ No newline at end of file