Hello,
I wrote a piece of code that would generate fibonacci sequence, but there is no data type that can hold such big numbers, is there a workaround to make the code contiune to do the math with big numbers?
Thanks.
Option Explicit
Sub Fibonacci()
Dim i As LongPtr, k As LongPtr
i =...