8d734244b ^
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