diff --git a/docs/lib2-fibseq.md b/docs/lib2-fibseq.md new file mode 100644 index 00000000..866a3e3a --- /dev/null +++ b/docs/lib2-fibseq.md @@ -0,0 +1,16 @@ +# fibseq + +Generate a Fibonacci sequence. + +**Since:**: 2.1 + +## Parameters + +- `from` : The nth Fibonacci number you wanna start from. +- `to` : The nth Fibonacci number you wanna go to. + +## Examples + + include ; + + echo(fibseq(1, 10)); // ECHO: [1, 1, 2, 3, 5, 8, 13, 21, 34, 55]