1
0
This repository has been archived on 2025-03-06. You can view files and clone it, but cannot push or open issues or pull requests.

6 lines
185 B
OCaml

let rec ack x y = match (x,y) with
| (0, _) -> y + 1
| (_ , 0) -> ack (x - 1) 1
| (_, _) -> ack (x - 1) (ack x (y - 1));;
for it = 1 to 1000 do let _ = (ack 3 6) in () done