pub fn fibonacci(number: i128) -> i128Expand description
fibonacci function: Takes an i128 integer number as input and returns the numberth Fibonacci number as an i128 integer.
It uses recursion to calculate the Fibonacci number. Note that it may cause stack overflow for large input values.