From f70130322cd306268c5da12c1517dc5725615ae8 Mon Sep 17 00:00:00 2001 From: Louis Pilfold Date: Thu, 15 Feb 2024 12:18:17 +0000 Subject: text -> en --- .../chapter0_basics/lesson01_hello_world/en.html | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/content/chapter0_basics/lesson01_hello_world/en.html (limited to 'src/content/chapter0_basics/lesson01_hello_world/en.html') diff --git a/src/content/chapter0_basics/lesson01_hello_world/en.html b/src/content/chapter0_basics/lesson01_hello_world/en.html new file mode 100644 index 0000000..a7dfc25 --- /dev/null +++ b/src/content/chapter0_basics/lesson01_hello_world/en.html @@ -0,0 +1,18 @@ +

Here is a program that prints out the text "Hello, Joe!".

+

+ It does this by using the println function which has been + imported from the + gleam/io + module, which is part of the Gleam standard library. +

+

+ In a normal Gleam program this program would be run using the command + gleam run on the command line, but here in this tour the program + is automatically compiled and run as the code is edited. +

+

+ Try changing the text being printed to Hello, Mike! and see what + happens. +

-- cgit v1.2.3