git ssb

0+

wanderer🌟 / js-primea-wasm-container



Tree: 6a5f857a376a1e31ae18a4fd65720456f048c611

Files: 6a5f857a376a1e31ae18a4fd65720456f048c611 / tests / wasm / testCode.wast

317 bytesRaw
1(module
2 (func $fac (param i64) (result i64)
3 (if i64
4 (i64.lt_s (get_local 0) (i64.const 1))
5 (then (i64.const 1))
6 (else
7 (i64.mul
8 (get_local 0)
9 (call $fac
10 (i64.sub
11 (get_local 0)
12 (i64.const 1)))))))
13 (export "fac" (func $fac)))
14

Built with git-ssb-web