summary refs log tree commit diff stats
path: root/tests/misc/tbug511622.nim
blob: 1af6380ed2b11c6a06d9ac61f1d1e59ebe3405f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
discard """
  output: "3"
"""
import 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 3