Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
10
Task/Fibonacci-sequence/Order/fibonacci-sequence-1.order
Normal file
10
Task/Fibonacci-sequence/Order/fibonacci-sequence-1.order
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#include <order/interpreter.h>
|
||||
|
||||
#define ORDER_PP_DEF_8fib_rec \
|
||||
ORDER_PP_FN(8fn(8N, \
|
||||
8if(8less(8N, 2), \
|
||||
8N, \
|
||||
8add(8fib_rec(8sub(8N, 1)), \
|
||||
8fib_rec(8sub(8N, 2))))))
|
||||
|
||||
ORDER_PP(8fib_rec(10))
|
||||
Loading…
Add table
Add a link
Reference in a new issue