1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-25 00:35:24 +02:00

wat2wasm: add page (#2359)

This commit is contained in:
Agniva De Sarker 2018-10-01 21:48:32 +05:30 committed by Muhammad Falak R Wani
parent ab3d66db6b
commit 747dd0f799

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}}`