From f70130322cd306268c5da12c1517dc5725615ae8 Mon Sep 17 00:00:00 2001 From: Louis Pilfold Date: Thu, 15 Feb 2024 12:18:17 +0000 Subject: text -> en --- .../lesson03_higher_order_functions/en.html | 12 ++++++++++++ .../lesson03_higher_order_functions/text.html | 12 ------------ 2 files changed, 12 insertions(+), 12 deletions(-) create mode 100644 src/content/chapter1_functions/lesson03_higher_order_functions/en.html delete mode 100644 src/content/chapter1_functions/lesson03_higher_order_functions/text.html (limited to 'src/content/chapter1_functions/lesson03_higher_order_functions') diff --git a/src/content/chapter1_functions/lesson03_higher_order_functions/en.html b/src/content/chapter1_functions/lesson03_higher_order_functions/en.html new file mode 100644 index 0000000..3343e4d --- /dev/null +++ b/src/content/chapter1_functions/lesson03_higher_order_functions/en.html @@ -0,0 +1,12 @@ +

+ In Gleam functions are values. They can be assigned to variables, passed to + other functions, and anything else you can do with values. +

+

+ Here the function add_one is being passed as an argument to the + twice function. +

+

+ Notice the fn keyword is also used to describe the type of the + function that twice takes as its second argument. +

diff --git a/src/content/chapter1_functions/lesson03_higher_order_functions/text.html b/src/content/chapter1_functions/lesson03_higher_order_functions/text.html deleted file mode 100644 index 3343e4d..0000000 --- a/src/content/chapter1_functions/lesson03_higher_order_functions/text.html +++ /dev/null @@ -1,12 +0,0 @@ -

- In Gleam functions are values. They can be assigned to variables, passed to - other functions, and anything else you can do with values. -

-

- Here the function add_one is being passed as an argument to the - twice function. -

-

- Notice the fn keyword is also used to describe the type of the - function that twice takes as its second argument. -

-- cgit v1.2.3