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

Tree @master (Download .tar.gz)

tc.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)