call $label
(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 ) (func $testAdd ;; Push parameters onto the stack i32.const 42 i32.const 101 ;; Call the $add function call $add ;; The stack contains the returned result of an i32 value of 143 )