2 lines
71 B
Text
2 lines
71 B
Text
|
|
Define A(m,n) = when(m=0, n+1, when(n=0, A(m-1,1), A(m-1, A(m, n-1))))
|