You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
337 B
14 lines
337 B
4 years ago
|
(module
|
||
|
(func $fibonacci (param $n i32) (result i32)
|
||
|
(if
|
||
|
(i32.lt_s (local.get $n) (i32.const 2))
|
||
|
(return (local.get $n))
|
||
|
)
|
||
|
(i32.add
|
||
|
(call $fibonacci (i32.sub (local.get $n) (i32.const 1)))
|
||
|
(call $fibonacci (i32.sub (local.get $n) (i32.const 2)))
|
||
|
)
|
||
|
)
|
||
|
(export "fibonacci" (func $fibonacci))
|
||
|
)
|