mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 16:44:56 +02:00
15 lines
313 B
Markdown
15 lines
313 B
Markdown
# 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}}`
|