(module...)
Create a WASM module. This is the root of the WASM data that contains all the code. Everything else you add will be placed inside the module.

Syntax

(module $label)

Parameters

$label Optional
The name of the module. This is not used.

Example

(module
    ;; Other parts that make up the module
)