Last active
July 3, 2023 22:21
-
-
Save mheiber/0f8c49575367b94f40f7d41b99c65a64 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ocaml_binary(name = 'ackermann_3_2_is_' + | |
str( | |
(lambda x, m, n: x(x, m, n)) | |
((lambda x, m, n: n + 1 if m == 0 else (x(x, m - 1, 1) if n == 0 else x(x, m - 1, x(x, m, n - 1)))), 3, 2) | |
), srcs = [], deps = []) |
Author
mheiber
commented
Jul 3, 2023
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment