aboutsummaryrefslogtreecommitdiff
path: root/src/content/chapter0_basics/lesson14_lists/code.gleam
diff options
context:
space:
mode:
Diffstat (limited to 'src/content/chapter0_basics/lesson14_lists/code.gleam')
-rw-r--r--src/content/chapter0_basics/lesson14_lists/code.gleam16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/content/chapter0_basics/lesson14_lists/code.gleam b/src/content/chapter0_basics/lesson14_lists/code.gleam
deleted file mode 100644
index 646ad6e..0000000
--- a/src/content/chapter0_basics/lesson14_lists/code.gleam
+++ /dev/null
@@ -1,16 +0,0 @@
-import gleam/io
-
-pub fn main() {
- let ints = [1, 2, 3]
-
- io.debug(ints)
-
- // Immutably prepend
- io.debug([-1, 0, ..ints])
-
- // Uncomment this to see the error
- // io.debug(["zero", ..ints])
-
- // The original lists are unchanged
- io.debug(ints)
-}