local.get $label
NONE |
* | The value stored in the local variable. The data type must be the same as the variable used. |
;; Add function (func $add (param $first i32) (param $second i32) (result i32) ;; Add first and second parameters together and return result local.get $first local.get $second i32.add )