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
Example:
(def f (sci/eval-string "(fn [coll n] (if (zero? n) (first coll) (recur (rest coll) (dec n))))" {:deny '[nth]})) (f '(1 2 3) 1) ((2 3) 0)
Workaround: use a name and use the name instead of recur.
Possible solution: maybe it's possible to do the recur check inside the function body?
recur
The text was updated successfully, but these errors were encountered:
[#113] fix function return value
6780bf7
[#113] fix function return value when using recur
3eae9e3
No branches or pull requests
Example:
Workaround: use a name and use the name instead of recur.
Possible solution: maybe it's possible to do the
recur
check inside the function body?The text was updated successfully, but these errors were encountered: