Skip to content
New issue

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

continue() inside an if[] does not afect outside scope #36

Closed
jjg-123 opened this issue Oct 31, 2023 · 0 comments
Closed

continue() inside an if[] does not afect outside scope #36

jjg-123 opened this issue Oct 31, 2023 · 0 comments

Comments

@jjg-123
Copy link
Collaborator

jjg-123 commented Oct 31, 2023

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.

jjg-123 pushed a commit that referenced this issue Oct 31, 2023
…security-lib#24 (switch to JOSE). The Crypto module now supports elliptic functions. Fix for HTTP module POST as per #35
@jjg-123 jjg-123 closed this as completed Nov 13, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant