aboutsummaryrefslogtreecommitdiff
path: root/src/content/chapter0_basics/lesson01_hello_world/en.html
blob: b5551605c5dfb285aa0d29052dfdba31c6533e5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<p>
  Here is a tiny program that prints out the text "Hello, Joe!". We'll explain
  how it works shortly.
</p>
<p>
  In a normal Gleam project this program would be run using the command
  <code>gleam run</code> on the command line, but here in this tour the program
  is compiled and run inside your web browser, allowing you to try Gleam without
  installing anything on your computer.
</p>
<p>
  Try changing the text being printed to <code>Hello, Mike!</code> and see what
  happens.
</p>