git @ Cat's Eye Technologies Bhuna / master eg / fib.bhu
master

Tree @master (Download .tar.gz)

fib.bhu @masterraw · history · blame

Fib = ^ X {
  if X < 2 return 1 else
  return Fib(X - 1) + Fib(X - 2)
}

//I = 1
//while I <= 25 {
//  Print Fib(I), EoL
//  I = I + 1
//}

Print Fib(32), EoL