aboutsummaryrefslogtreecommitdiff
path: root/src/content
diff options
context:
space:
mode:
Diffstat (limited to 'src/content')
-rw-r--r--src/content/chapter0_basics/lesson00_hello_world/code.gleam5
-rw-r--r--src/content/chapter0_basics/lesson00_hello_world/text.html26
-rw-r--r--src/content/chapter5_advanced_features/lesson00_use/code.gleam (renamed from src/content/chapter5_advance_features/lesson00_use/code.gleam)0
-rw-r--r--src/content/chapter5_advanced_features/lesson00_use/text.html (renamed from src/content/chapter5_advance_features/lesson00_use/text.html)0
-rw-r--r--src/content/chapter5_advanced_features/lesson01_use_sugar/code.gleam (renamed from src/content/chapter5_advance_features/lesson01_use_sugar/code.gleam)0
-rw-r--r--src/content/chapter5_advanced_features/lesson01_use_sugar/text.html (renamed from src/content/chapter5_advance_features/lesson01_use_sugar/text.html)0
-rw-r--r--src/content/chapter5_advanced_features/lesson02_todo/code.gleam (renamed from src/content/chapter5_advance_features/lesson02_todo/code.gleam)0
-rw-r--r--src/content/chapter5_advanced_features/lesson02_todo/text.html (renamed from src/content/chapter5_advance_features/lesson02_todo/text.html)0
-rw-r--r--src/content/chapter5_advanced_features/lesson03_panic/code.gleam (renamed from src/content/chapter5_advance_features/lesson03_panic/code.gleam)0
-rw-r--r--src/content/chapter5_advanced_features/lesson03_panic/text.html (renamed from src/content/chapter5_advance_features/lesson03_panic/text.html)0
-rw-r--r--src/content/chapter5_advanced_features/lesson04_externals/code.gleam (renamed from src/content/chapter5_advance_features/lesson04_externals/code.gleam)0
-rw-r--r--src/content/chapter5_advanced_features/lesson04_externals/text.html (renamed from src/content/chapter5_advance_features/lesson04_externals/text.html)0
-rw-r--r--src/content/chapter5_advanced_features/lesson05_multi_target_externals/code.gleam (renamed from src/content/chapter5_advance_features/lesson05_multi_target_externals/code.gleam)0
-rw-r--r--src/content/chapter5_advanced_features/lesson05_multi_target_externals/text.html (renamed from src/content/chapter5_advance_features/lesson05_multi_target_externals/text.html)0
-rw-r--r--src/content/chapter5_advanced_features/lesson06_external_gleam_fallbacks/code.gleam (renamed from src/content/chapter5_advance_features/lesson06_external_gleam_fallbacks/code.gleam)0
-rw-r--r--src/content/chapter5_advanced_features/lesson06_external_gleam_fallbacks/text.html (renamed from src/content/chapter5_advance_features/lesson06_external_gleam_fallbacks/text.html)0
16 files changed, 0 insertions, 31 deletions
diff --git a/src/content/chapter0_basics/lesson00_hello_world/code.gleam b/src/content/chapter0_basics/lesson00_hello_world/code.gleam
deleted file mode 100644
index 30530b2..0000000
--- a/src/content/chapter0_basics/lesson00_hello_world/code.gleam
+++ /dev/null
@@ -1,5 +0,0 @@
-import gleam/io
-
-pub fn main() {
- io.println("Hello, Joe!")
-}
diff --git a/src/content/chapter0_basics/lesson00_hello_world/text.html b/src/content/chapter0_basics/lesson00_hello_world/text.html
deleted file mode 100644
index cb41be9..0000000
--- a/src/content/chapter0_basics/lesson00_hello_world/text.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<h2>Hello, friend 💫</h2>
-<p>
- Welcome to Try Gleam! An interactive tour of the Gleam programming language.
-</p>
-<p>
- It covers all aspects of the Gleam language, and assuming you have some
- prior programming experience should teach you everything you need to write
- real programs in Gleam.
-</p>
-<p>
- The tour is interactive! The code shown is editable and will be compiled and
- evaluated as you type. Anything you print using <code>io.println</code> or
- <code>io.debug</code> will be shown in the bottom section, along with any
- compile errors and warnings. To evaluate Gleam code the tour compiles Gleam to
- JavaScript and runs it, all entirely within your browser window.
-</p>
-<p>
- If at any point you get stuck or have a question do not hesitate to ask in
- <a href="https://discord.gg/Fm8Pwmy">the Gleam Discord server</a>. We're here
- to help, and if you find something confusing then it's likely others will too,
- and we want to know about it so we can improve the tour.
-</p>
-<p>
- OK, let's go. Click "Next" to get started, or click "Index" to jump to a
- specific topic.
-</p>
diff --git a/src/content/chapter5_advance_features/lesson00_use/code.gleam b/src/content/chapter5_advanced_features/lesson00_use/code.gleam
index 37624ab..37624ab 100644
--- a/src/content/chapter5_advance_features/lesson00_use/code.gleam
+++ b/src/content/chapter5_advanced_features/lesson00_use/code.gleam
diff --git a/src/content/chapter5_advance_features/lesson00_use/text.html b/src/content/chapter5_advanced_features/lesson00_use/text.html
index e295dda..e295dda 100644
--- a/src/content/chapter5_advance_features/lesson00_use/text.html
+++ b/src/content/chapter5_advanced_features/lesson00_use/text.html
diff --git a/src/content/chapter5_advance_features/lesson01_use_sugar/code.gleam b/src/content/chapter5_advanced_features/lesson01_use_sugar/code.gleam
index ac61062..ac61062 100644
--- a/src/content/chapter5_advance_features/lesson01_use_sugar/code.gleam
+++ b/src/content/chapter5_advanced_features/lesson01_use_sugar/code.gleam
diff --git a/src/content/chapter5_advance_features/lesson01_use_sugar/text.html b/src/content/chapter5_advanced_features/lesson01_use_sugar/text.html
index e28c843..e28c843 100644
--- a/src/content/chapter5_advance_features/lesson01_use_sugar/text.html
+++ b/src/content/chapter5_advanced_features/lesson01_use_sugar/text.html
diff --git a/src/content/chapter5_advance_features/lesson02_todo/code.gleam b/src/content/chapter5_advanced_features/lesson02_todo/code.gleam
index d5abe8f..d5abe8f 100644
--- a/src/content/chapter5_advance_features/lesson02_todo/code.gleam
+++ b/src/content/chapter5_advanced_features/lesson02_todo/code.gleam
diff --git a/src/content/chapter5_advance_features/lesson02_todo/text.html b/src/content/chapter5_advanced_features/lesson02_todo/text.html
index 4a2c433..4a2c433 100644
--- a/src/content/chapter5_advance_features/lesson02_todo/text.html
+++ b/src/content/chapter5_advanced_features/lesson02_todo/text.html
diff --git a/src/content/chapter5_advance_features/lesson03_panic/code.gleam b/src/content/chapter5_advanced_features/lesson03_panic/code.gleam
index fce9d66..fce9d66 100644
--- a/src/content/chapter5_advance_features/lesson03_panic/code.gleam
+++ b/src/content/chapter5_advanced_features/lesson03_panic/code.gleam
diff --git a/src/content/chapter5_advance_features/lesson03_panic/text.html b/src/content/chapter5_advanced_features/lesson03_panic/text.html
index 843a65b..843a65b 100644
--- a/src/content/chapter5_advance_features/lesson03_panic/text.html
+++ b/src/content/chapter5_advanced_features/lesson03_panic/text.html
diff --git a/src/content/chapter5_advance_features/lesson04_externals/code.gleam b/src/content/chapter5_advanced_features/lesson04_externals/code.gleam
index ade2c54..ade2c54 100644
--- a/src/content/chapter5_advance_features/lesson04_externals/code.gleam
+++ b/src/content/chapter5_advanced_features/lesson04_externals/code.gleam
diff --git a/src/content/chapter5_advance_features/lesson04_externals/text.html b/src/content/chapter5_advanced_features/lesson04_externals/text.html
index 81202d6..81202d6 100644
--- a/src/content/chapter5_advance_features/lesson04_externals/text.html
+++ b/src/content/chapter5_advanced_features/lesson04_externals/text.html
diff --git a/src/content/chapter5_advance_features/lesson05_multi_target_externals/code.gleam b/src/content/chapter5_advanced_features/lesson05_multi_target_externals/code.gleam
index b62a735..b62a735 100644
--- a/src/content/chapter5_advance_features/lesson05_multi_target_externals/code.gleam
+++ b/src/content/chapter5_advanced_features/lesson05_multi_target_externals/code.gleam
diff --git a/src/content/chapter5_advance_features/lesson05_multi_target_externals/text.html b/src/content/chapter5_advanced_features/lesson05_multi_target_externals/text.html
index dc10a19..dc10a19 100644
--- a/src/content/chapter5_advance_features/lesson05_multi_target_externals/text.html
+++ b/src/content/chapter5_advanced_features/lesson05_multi_target_externals/text.html
diff --git a/src/content/chapter5_advance_features/lesson06_external_gleam_fallbacks/code.gleam b/src/content/chapter5_advanced_features/lesson06_external_gleam_fallbacks/code.gleam
index a97b8fc..a97b8fc 100644
--- a/src/content/chapter5_advance_features/lesson06_external_gleam_fallbacks/code.gleam
+++ b/src/content/chapter5_advanced_features/lesson06_external_gleam_fallbacks/code.gleam
diff --git a/src/content/chapter5_advance_features/lesson06_external_gleam_fallbacks/text.html b/src/content/chapter5_advanced_features/lesson06_external_gleam_fallbacks/text.html
index 243c7ea..243c7ea 100644
--- a/src/content/chapter5_advance_features/lesson06_external_gleam_fallbacks/text.html
+++ b/src/content/chapter5_advanced_features/lesson06_external_gleam_fallbacks/text.html