3 lines
77 B
Text
3 lines
77 B
Text
#include "harbour.ch"
|
|
Function fibb(a,b,n)
|
|
return(if(--n>0,fibb(b,a+b,n),a))
|