aboutsummaryrefslogtreecommitdiff
path: root/src/content/chapter2_flow_control
diff options
context:
space:
mode:
authorLouis Pilfold <louis@lpil.uk>2024-04-19 12:18:22 +0100
committerLouis Pilfold <louis@lpil.uk>2024-04-19 12:18:22 +0100
commit3f89c9ac3512a08a2873a3eb55efc23c430153ae (patch)
tree4ee346c66d723d27126ba198e507ea922e1acea6 /src/content/chapter2_flow_control
parente5f082c4235cf41a5cd73a96014c64b30eb2ab81 (diff)
downloadtour-3f89c9ac3512a08a2873a3eb55efc23c430153ae.tar.gz
tour-3f89c9ac3512a08a2873a3eb55efc23c430153ae.zip
Format
Diffstat (limited to 'src/content/chapter2_flow_control')
-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
5 files changed, 5 insertions, 5 deletions
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)