diff options
author | Louis Pilfold <louis@lpil.uk> | 2023-12-09 12:23:02 +0000 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2023-12-09 12:23:02 +0000 |
commit | c093b83c9c5ad3ba92e9153569be6e27476403ea (patch) | |
tree | 2c51eb3320985e4a79889e14d5027f5d3c97f3ed /lessons/src/lesson014_higher_order_functions/code.gleam | |
parent | 52a4e31a356e212ba537a241a3722848d9f0c93c (diff) | |
download | tour-c093b83c9c5ad3ba92e9153569be6e27476403ea.tar.gz tour-c093b83c9c5ad3ba92e9153569be6e27476403ea.zip |
Functions
Diffstat (limited to 'lessons/src/lesson014_higher_order_functions/code.gleam')
-rw-r--r-- | lessons/src/lesson014_higher_order_functions/code.gleam | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lessons/src/lesson014_higher_order_functions/code.gleam b/lessons/src/lesson014_higher_order_functions/code.gleam new file mode 100644 index 0000000..f453975 --- /dev/null +++ b/lessons/src/lesson014_higher_order_functions/code.gleam @@ -0,0 +1,18 @@ +import gleam/io + +pub fn main() { + // Call a function with another function + io.debug(twice(1, add_one)) + + // Functions can be assigned to variables + let function = add_one + io.debug(function(100)) +} + +fn twice(a: Int, function: fn(Int) -> Int) -> Int { + function(function(a)) +} + +fn add_one(a: Int) -> Int { + a + 1 +} |