wat2wasm: add page (#2359)

italian
Agniva De Sarker 2018-10-01 21:48:32 +05:30 committed by Muhammad Falak R Wani
parent ab3d66db6b
commit 747dd0f799
1 changed files with 15 additions and 0 deletions

15
pages/common/wat2wasm.md Normal file
View File

@ -0,0 +1,15 @@
# wat2wasm
> Convert a file from the WebAssembly text format to the binary format.
- Parse and check a file for errors:
`wat2wasm {{file.wat}}`
- Write the output binary to a given file:
`wat2wasm {{file.wat}} -o {{file.wasm}}`
- Display simplified representation of every byte:
`wat2wasm -v {{file.wat}}`