3 lines
93 B
Text
3 lines
93 B
Text
func A((0), n) { n + 1 }
|
|
func A(m, (0)) { A(m - 1, 1) }
|
|
func A(m, n) { A(m-1, A(m, n-1)) }
|