加法

add 指令用于将两个数字加起来,类似于其他语言中的 + 运算符。

试一试

语法

wasm
;; load two numbers onto the stack
i32.const 10
i32.const 3

;; add up both numbers
i32.add

;; the top item on the stack will now be 13  (10 + 3 = 13)
指令 二进制操作码
i32.add 0x6a
i64.add 0x7c
f32.add 0x92
f64.add 0xa0