aboutsummaryrefslogtreecommitdiff
path: root/test/acker.test
blob: 2036861b4eb5b2d629b00c63fe3ec6888c870d8c (plain) (blame)
1
2
acker i j = if (i==0) (j+1) acker(i-1, if (j==0) 1 acker(i,j-1))
acker(3,7)