aboutsummaryrefslogtreecommitdiff
path: root/src/content/chapter0_basics/lesson00_hello_world
diff options
context:
space:
mode:
authorLouis Pilfold <louis@lpil.uk>2024-01-18 17:47:12 +0000
committerLouis Pilfold <louis@lpil.uk>2024-01-18 17:47:12 +0000
commit3bfbe688f5a62e29835c7d3c4f282e7fff57949d (patch)
tree038cd1bf7a72949f7d68358ffd8af59d073ef70a /src/content/chapter0_basics/lesson00_hello_world
parentf92661980deac22b54e79cd44c25caba17910c95 (diff)
downloadtour-3bfbe688f5a62e29835c7d3c4f282e7fff57949d.tar.gz
tour-3bfbe688f5a62e29835c7d3c4f282e7fff57949d.zip
Rename
Diffstat (limited to 'src/content/chapter0_basics/lesson00_hello_world')
-rw-r--r--src/content/chapter0_basics/lesson00_hello_world/code.gleam5
-rw-r--r--src/content/chapter0_basics/lesson00_hello_world/text.html26
2 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>