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
Having a continue() call in a loop inside a conditional should continue the loop. The scope was ending at the conditional:
key_set := {'a','b','c','d'}; while[k∈key_set] do[ if[k=='b'][continue();]; if[k=='b'] then[ok:=false;] else[i++;]; ];
I.e. in this code, ok should be set false. Instead, i was incrementing.
The text was updated successfully, but these errors were encountered:
Fixes for #36, updates to the crypto module as a side effect of ncsa/…
2669689
…security-lib#24 (switch to JOSE). The Crypto module now supports elliptic functions. Fix for HTTP module POST as per #35
No branches or pull requests
Having a continue() call in a loop inside a conditional should continue the loop. The scope was ending at the conditional:
I.e. in this code, ok should be set false. Instead, i was incrementing.
The text was updated successfully, but these errors were encountered: