aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/content/chapter0_basics/lesson05_ints/code.gleam2
-rw-r--r--src/content/chapter0_basics/lesson06_floats/code.gleam2
-rw-r--r--src/content/chapter0_basics/lesson10_bools/code.gleam2
-rw-r--r--src/content/chapter2_flow_control/lesson01_case_expressions/code.gleam2
-rw-r--r--src/content/chapter2_flow_control/lesson02_variable_patterns/code.gleam2
-rw-r--r--src/content/chapter2_flow_control/lesson04_list_patterns/code.gleam2
-rw-r--r--src/content/chapter2_flow_control/lesson08_multiple_subjects/code.gleam2
-rw-r--r--src/content/chapter2_flow_control/lesson09_alternative_patterns/code.gleam2
-rw-r--r--src/content/chapter3_data_types/lesson07_results/code.gleam2
-rw-r--r--src/content/chapter4_standard_library/lesson02_result_module/code.gleam2
-rw-r--r--src/content/chapter4_standard_library/lesson03_dict_module/code.gleam2
11 files changed, 11 insertions, 11 deletions
diff --git a/src/content/chapter0_basics/lesson05_ints/code.gleam b/src/content/chapter0_basics/lesson05_ints/code.gleam
index cb7991b..120b342 100644
--- a/src/content/chapter0_basics/lesson05_ints/code.gleam
+++ b/src/content/chapter0_basics/lesson05_ints/code.gleam
@@ -1,5 +1,5 @@
-import gleam/io
import gleam/int
+import gleam/io
pub fn main() {
// Int arithmetic
diff --git a/src/content/chapter0_basics/lesson06_floats/code.gleam b/src/content/chapter0_basics/lesson06_floats/code.gleam
index 4241ab4..b56eb3a 100644
--- a/src/content/chapter0_basics/lesson06_floats/code.gleam
+++ b/src/content/chapter0_basics/lesson06_floats/code.gleam
@@ -1,5 +1,5 @@
-import gleam/io
import gleam/float
+import gleam/io
pub fn main() {
// Float arithmetic
diff --git a/src/content/chapter0_basics/lesson10_bools/code.gleam b/src/content/chapter0_basics/lesson10_bools/code.gleam
index e5c1d98..aa25ba2 100644
--- a/src/content/chapter0_basics/lesson10_bools/code.gleam
+++ b/src/content/chapter0_basics/lesson10_bools/code.gleam
@@ -1,5 +1,5 @@
-import gleam/io
import gleam/bool
+import gleam/io
pub fn main() {
// Bool operators
diff --git a/src/content/chapter2_flow_control/lesson01_case_expressions/code.gleam b/src/content/chapter2_flow_control/lesson01_case_expressions/code.gleam
index aaa2208..d198832 100644
--- a/src/content/chapter2_flow_control/lesson01_case_expressions/code.gleam
+++ b/src/content/chapter2_flow_control/lesson01_case_expressions/code.gleam
@@ -1,5 +1,5 @@
-import gleam/io
import gleam/int
+import gleam/io
pub fn main() {
let x = int.random(5)
diff --git a/src/content/chapter2_flow_control/lesson02_variable_patterns/code.gleam b/src/content/chapter2_flow_control/lesson02_variable_patterns/code.gleam
index 288bfb0..5bce937 100644
--- a/src/content/chapter2_flow_control/lesson02_variable_patterns/code.gleam
+++ b/src/content/chapter2_flow_control/lesson02_variable_patterns/code.gleam
@@ -1,5 +1,5 @@
-import gleam/io
import gleam/int
+import gleam/io
pub fn main() {
let result = case int.random(5) {
diff --git a/src/content/chapter2_flow_control/lesson04_list_patterns/code.gleam b/src/content/chapter2_flow_control/lesson04_list_patterns/code.gleam
index e767d20..1b71feb 100644
--- a/src/content/chapter2_flow_control/lesson04_list_patterns/code.gleam
+++ b/src/content/chapter2_flow_control/lesson04_list_patterns/code.gleam
@@ -1,5 +1,5 @@
-import gleam/io
import gleam/int
+import gleam/io
import gleam/list
pub fn main() {
diff --git a/src/content/chapter2_flow_control/lesson08_multiple_subjects/code.gleam b/src/content/chapter2_flow_control/lesson08_multiple_subjects/code.gleam
index d7aa34a..38885b6 100644
--- a/src/content/chapter2_flow_control/lesson08_multiple_subjects/code.gleam
+++ b/src/content/chapter2_flow_control/lesson08_multiple_subjects/code.gleam
@@ -1,5 +1,5 @@
-import gleam/io
import gleam/int
+import gleam/io
pub fn main() {
let x = int.random(2)
diff --git a/src/content/chapter2_flow_control/lesson09_alternative_patterns/code.gleam b/src/content/chapter2_flow_control/lesson09_alternative_patterns/code.gleam
index 06a6562..e916a03 100644
--- a/src/content/chapter2_flow_control/lesson09_alternative_patterns/code.gleam
+++ b/src/content/chapter2_flow_control/lesson09_alternative_patterns/code.gleam
@@ -1,5 +1,5 @@
-import gleam/io
import gleam/int
+import gleam/io
pub fn main() {
let number = int.random(10)
diff --git a/src/content/chapter3_data_types/lesson07_results/code.gleam b/src/content/chapter3_data_types/lesson07_results/code.gleam
index ae00bba..b613566 100644
--- a/src/content/chapter3_data_types/lesson07_results/code.gleam
+++ b/src/content/chapter3_data_types/lesson07_results/code.gleam
@@ -1,5 +1,5 @@
-import gleam/io
import gleam/int
+import gleam/io
pub fn main() {
io.debug(buy_pastry(10))
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)])