blob: 96b97dceaabc026140e4760d4f41654ce6c0efee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# The Gleam Language Tour
An interactive tour of the Gleam programming language.
```sh
# Download a wasm version of the Gleam compiler
rm -rf wasm-compiler
mkdir wasm-compiler
cd wasm-compiler
curl -L "https://github.com/gleam-lang/gleam/releases/download/v0.34.1/gleam-v0.34.1-browser.tar.gz" | tar xz
cd ..
# Build the site
gleam run
# It's now all the in `public/` directory
```
|