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

Tree @master (Download .tar.gz)

confuse.bhu @masterraw · history · blame

1
2
3
4
5
6
7
8
F = ^ A {
  if A = 0
    return A
  else
    return [F(A-1)]
}

Print F(10)