We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We do not want a Turing complete language. We should eliminate recursion. The following code leads to stack overflow:
let ff = (x, acc, f) => if x == 0 then acc else f(x-1, acc+2, f) in ff(20000, 0, ff)
The text was updated successfully, but these errors were encountered:
jsonnet has the same issue (Dec 2020)
Sorry, something went wrong.
No branches or pull requests
We do not want a Turing complete language. We should eliminate recursion. The following code leads to stack overflow:
The text was updated successfully, but these errors were encountered: