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

Tree @master (Download .tar.gz)

fact.bhu @masterraw · history · blame

1
2
3
4
5
6
7
8
Fact = ^ X {
  if X > 1
    return X * Fact(X - 1)
  else
    return 1
}

Print Fact(6), EoL