From 04ec0d86c8b43d1cca48adc937b3e596a10577a1 Mon Sep 17 00:00:00 2001 From: Louis Pilfold Date: Tue, 26 Mar 2024 11:36:11 +0000 Subject: Improve introduction of modules and imports Thanks @RyanBrewer317! --- src/content/chapter0_basics/lesson07_equality/code.gleam | 6 ------ src/content/chapter0_basics/lesson07_equality/en.html | 13 ------------- 2 files changed, 19 deletions(-) delete mode 100644 src/content/chapter0_basics/lesson07_equality/code.gleam delete mode 100644 src/content/chapter0_basics/lesson07_equality/en.html (limited to 'src/content/chapter0_basics/lesson07_equality') diff --git a/src/content/chapter0_basics/lesson07_equality/code.gleam b/src/content/chapter0_basics/lesson07_equality/code.gleam deleted file mode 100644 index 70a2b89..0000000 --- a/src/content/chapter0_basics/lesson07_equality/code.gleam +++ /dev/null @@ -1,6 +0,0 @@ -import gleam/io - -pub fn main() { - io.debug(100 == 100) - io.debug(1.5 != 0.1) -} diff --git a/src/content/chapter0_basics/lesson07_equality/en.html b/src/content/chapter0_basics/lesson07_equality/en.html deleted file mode 100644 index e8c2169..0000000 --- a/src/content/chapter0_basics/lesson07_equality/en.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