From 931d77e2e44585d63935b88a6736d8980e997bb1 Mon Sep 17 00:00:00 2001 From: Sean Davis <43555662+laughingbiscuit@users.noreply.github.com> Date: Fri, 27 Jan 2023 17:09:22 +0000 Subject: [PATCH] wrong flag! --- 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):