diff options
Diffstat (limited to 'src/content/chapter4_standard_library')
-rw-r--r-- | src/content/chapter4_standard_library/lesson02_result_module/code.gleam | 2 | ||||
-rw-r--r-- | src/content/chapter4_standard_library/lesson03_dict_module/code.gleam | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/content/chapter4_standard_library/lesson02_result_module/code.gleam b/src/content/chapter4_standard_library/lesson02_result_module/code.gleam index 8772788..ec7039b 100644 --- a/src/content/chapter4_standard_library/lesson02_result_module/code.gleam +++ b/src/content/chapter4_standard_library/lesson02_result_module/code.gleam @@ -1,5 +1,5 @@ -import gleam/io import gleam/int +import gleam/io import gleam/result pub fn main() { diff --git a/src/content/chapter4_standard_library/lesson03_dict_module/code.gleam b/src/content/chapter4_standard_library/lesson03_dict_module/code.gleam index 02c72c0..e7b3a59 100644 --- a/src/content/chapter4_standard_library/lesson03_dict_module/code.gleam +++ b/src/content/chapter4_standard_library/lesson03_dict_module/code.gleam @@ -1,5 +1,5 @@ -import gleam/io import gleam/dict +import gleam/io pub fn main() { let scores = dict.from_list([#("Lucy", 13), #("Drew", 15)]) |