blob: 017a97aaf0ce4d57531d53563c4cd9a06aa645ea (
plain)
1
2
3
4
5
6
7
8
|
(func (export "fac") (param i32) (result i32)
(if (result i32) (i32.eq (local.get 0) (i32.const 0))
(then (i32.const 1))
(else
(i32.mul (local.get 0) (call 0 (i32.sub (local.get 0) (i32.const 1))))
)
)
)
|