Global set
The global.set instruction sets the values of a global variable.
Syntax
;; load the number 2 onto the stack
i32.const 2
;; store the number 2 in the variable $val
global.set $val
| Instruction | Binary opcode |
|---|---|
global.set |
0x21 |
The global.set instruction sets the values of a global variable.
;; load the number 2 onto the stack
i32.const 2
;; store the number 2 in the variable $val
global.set $val
| Instruction | Binary opcode |
|---|---|
global.set |
0x21 |