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

+ Gleam has the == and != operators for checking + equality. +

+

+ The operators can be used with values of any type, but both sides of the + operator must be of the same type. +

+

+ Equality is checked structurally, meaning that two values are equal + if they have the same structure rather than if they are at the same memory + location. +

diff --git a/src/content/chapter0_basics/lesson07_equality/text.html b/src/content/chapter0_basics/lesson07_equality/text.html deleted file mode 100644 index e8c2169..0000000 --- a/src/content/chapter0_basics/lesson07_equality/text.html +++ /dev/null @@ -1,13 +0,0 @@ -

- Gleam has the == and != operators for checking - equality. -

-

- The operators can be used with values of any type, but both sides of the - operator must be of the same type. -

-

- Equality is checked structurally, meaning that two values are equal - if they have the same structure rather than if they are at the same memory - location. -

-- cgit v1.2.3