1# AssemblyScript Hello World (WASI)
2
3This example implements the typical "Hello, World!" application in AssemblyScript, utilizing WASI.
4
5## Setup
6
7Navigate to `./docs/assemblyscript-hello-world` and run
8
9```
10npm install
11```
12
13Build the AssemblyScript example
14
15```
16npm run build
17```
18
19Run the example
20
21```
22npm run start
23```