@prg1-2018/students ``` def fib_itr(n: Int) : BigInt = { def aux(n: Int, a: BigInt, b: BigInt) : BigInt = n match { case 0 => b case _ => aux(n-1, a+b, a) } aux(n, 1, 0) } ```
@prg1-2018/students