aboutsummaryrefslogtreecommitdiff
path: root/lessons/src/lesson014_higher_order_functions/code.gleam
diff options
context:
space:
mode:
authorLouis Pilfold <louis@lpil.uk>2023-12-09 12:23:02 +0000
committerLouis Pilfold <louis@lpil.uk>2023-12-09 12:23:02 +0000
commitc093b83c9c5ad3ba92e9153569be6e27476403ea (patch)
tree2c51eb3320985e4a79889e14d5027f5d3c97f3ed /lessons/src/lesson014_higher_order_functions/code.gleam
parent52a4e31a356e212ba537a241a3722848d9f0c93c (diff)
downloadtour-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.gleam18
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
+}