From 4efb34bd728732101432843ed0bfbeb971272287 Mon Sep 17 00:00:00 2001 From: Louis Pilfold Date: Thu, 21 Dec 2023 14:03:41 +0000 Subject: Add chapters --- lessons/src/lesson021_list_functions/text.html | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 lessons/src/lesson021_list_functions/text.html (limited to 'lessons/src/lesson021_list_functions/text.html') diff --git a/lessons/src/lesson021_list_functions/text.html b/lessons/src/lesson021_list_functions/text.html deleted file mode 100644 index e143654..0000000 --- a/lessons/src/lesson021_list_functions/text.html +++ /dev/null @@ -1,25 +0,0 @@ -

- The gleam/list - standard library module contains functions for working with lists. A Gleam - program will likely make heavy use of this module. -

- -

- map - makes a new list by running a function on each element in a list. -

-

- filter - makes a new list containing only the elements for which a function returns - true. -

-

- fold - combines all the elements in a list into a single value by running a function - left-to-right on each element, passing the result of the previous call to the - next call. -

-

- It's worth getting familiar with all the functions in this module when writing - Gleam code. -

-- cgit v1.2.3