Skip to content
Snippets Groups Projects
Commit 48e98422 authored by Justus Fasse's avatar Justus Fasse
Browse files

Fix never-ending test

Revert ack.ml test to use smaller values.
parent 5de95e01
No related branches found
No related tags found
No related merge requests found
Pipeline #35260 passed
......@@ -2,4 +2,4 @@ let rec ack x y =
if x <= 0 then y + 1 else
if y <= 0 then ack (x - 1) 1 else
ack (x - 1) (ack x (y - 1)) in
print_int (ack 3 12)
print_int (ack 3 8)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment