You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
320 B
23 lines
320 B
1 year ago
|
# AssemblyScript Hello World (WASI)
|
||
|
|
||
|
This example implements the typical "Hello, World!" application in AssemblyScript, utilizing WASI.
|
||
|
|
||
|
## Setup
|
||
|
|
||
|
Navigate to `./docs/assemblyscript-hello-world` and run
|
||
|
|
||
|
```
|
||
|
npm install
|
||
|
```
|
||
|
|
||
|
Build the AssemblyScript example
|
||
|
|
||
|
```
|
||
|
npm run build
|
||
|
```
|
||
|
|
||
|
Run the example
|
||
|
|
||
|
```
|
||
|
npm run start
|
||
|
```
|