a690e7b26 ^
e80465dac ^
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