summary refs log blame commit diff stats
path: root/tests/accept/compile/tfib.nim
blob: 09a4d5038e302953884a22f8b89410a6bfbbbc87 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                            
iterator fibonacci(): int = 
  var a = 0
  var b = 1
  while true: 
    yield a
    var c = b
    b = a
    a = a + c