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