f32
values off the stack, multiples them together, and then
pushes the result back on to the stack.
f32.mul
f32 | The first value to be multipled. |
f32 | The second value to be multipled. |
f32 | The result of multipling the first and second values together. |
;; Push the f32 value 3.142 onto the stack f32.const 3.142 ;; Push the f32 value 2.718 onto the stack f32.const 2.718 ;; Pop the two f32 values off the stack, multiply them together and ;; push the result back onto the stack f32.mul ;; The stack contains an f32 value of 8.539956