Reference the wiki

This commit is contained in:
dcodeIO
2017-12-14 16:50:59 +01:00
parent 6bea116b3e
commit b69c07af45
5 changed files with 15 additions and 44 deletions

View File

@ -1,7 +1,7 @@
i64 polyfill
============
An AssemblyScript example.
An [AssemblyScript](http://assemblyscript.org) example. Exposes i64 operations to JS using 32-bit integers (low and high bits).
Instructions
------------

View File

@ -5,6 +5,6 @@
"scripts": {
"build": "npm run build:untouched && npm run build:optimized",
"build:untouched": "asc assembly/i64.ts -t i64.untouched.wast -b i64.untouched.wasm --validate",
"build:optimized": "asc -O assembly/i64.ts -b i64.optimized.wasm -t i64.optimized.wast --validdate"
"build:optimized": "asc -O assembly/i64.ts -b i64.optimized.wasm -t i64.optimized.wast --validate"
}
}