summary refs log blame commit diff stats
path: root/tests/accept/run/tbug511622.nim
blob: 296c36b9cc72aa4c3964cf9e82fd75bd0de2c810 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                     
import StrUtils, Math

proc FibonacciA(n: int): int64 =
  var fn = float64(n)
  var p: float64 = (1.0 + sqrt(5.0)) / 2.0
  var q: float64 = 1.0 / p
  return int64((pow(p, fn) + pow(q, fn)) / sqrt(5.0))

echo FibonacciA(4) #OUT 10