From ffda932627bab0d7613b12d6a741ae22f744072b Mon Sep 17 00:00:00 2001 From: unsoluble_sugar Date: Fri, 27 Jan 2023 02:09:42 +0900 Subject: [PATCH] fix: Compiler options in AssemblyScript #157 --- examples/hello-world/hello-world.assemblyscript.en-us.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/hello-world/hello-world.assemblyscript.en-us.md b/examples/hello-world/hello-world.assemblyscript.en-us.md index 435075f..1aefe30 100644 --- a/examples/hello-world/hello-world.assemblyscript.en-us.md +++ b/examples/hello-world/hello-world.assemblyscript.en-us.md @@ -32,7 +32,7 @@ npm install -g assemblyscript Now, let's compile that into a wasm module which will output a `hello-world.wasm`: ```bash -asc hello-world.ts -b hello-world.wasm +asc hello-world.ts -o hello-world.wasm ``` Next, lets create a `hello-world.js` JavaScript file, and add a function for loading Wasm modules using the [WebAssembly Web APIs](https://developer.mozilla.org/en-US/docs/WebAssembly):