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
for example
def is_even(n): if n % 2 == 0: return 1 else: return 0 def get_even_sum_under_if(this_number): bend current = 0: when current < this_number: new_num = fork(current + is_even(current)) return new_num def main(): return get_even_sum_under_if(1000)
will complain about wrong indentation and not the missing else
The text was updated successfully, but these errors were encountered:
Merge pull request #645 from HigherOrderCO/464-improve-error-message-…
67640d5
…when-program-is-missing-arm-of-branching-statement #464 Improve error message when program is missing arm of branching statement
Successfully merging a pull request may close this issue.
for example
will complain about wrong indentation and not the missing else
The text was updated successfully, but these errors were encountered: