Fibonacci Sequence Generator
Fibonacci Sequence is a very famous sequence, where its next term is a sum of the previous two terms. Zeroth term is always zero and first term is always one. Mathematically can be witten as:
F(0) = 0
F(1) = 1
F(n) = F(n-2) + F(n-1)
Hope you'll enjoy and like my little project!
Voters
it doesnt work