aboutsummaryrefslogtreecommitdiff
path: root/src/content/chapter5_advanced_features/lesson01_use/code.gleam
diff options
context:
space:
mode:
Diffstat (limited to 'src/content/chapter5_advanced_features/lesson01_use/code.gleam')
-rw-r--r--src/content/chapter5_advanced_features/lesson01_use/code.gleam4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/content/chapter5_advanced_features/lesson01_use/code.gleam b/src/content/chapter5_advanced_features/lesson01_use/code.gleam
index e7b435b..110c154 100644
--- a/src/content/chapter5_advanced_features/lesson01_use/code.gleam
+++ b/src/content/chapter5_advanced_features/lesson01_use/code.gleam
@@ -2,8 +2,8 @@ import gleam/io
import gleam/result
pub fn main() {
- io.debug(without_use())
- io.debug(with_use())
+ let _ = io.debug(without_use())
+ let _ = io.debug(with_use())
}
pub fn without_use() {