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.

7 lines
159 B
OCaml

let rec tak x y z =
if y < x then
tak (tak (x-1) y z) (tak (y-1) z x) (tak (z-1) x y)
else z;;
for it = 1 to 1000 do let _ = (tak 18 12 6) in () done