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
try
finally
From the following examples, it seems like the finally clause is not considered for variable assignment:
tester = try sqrt(1); 1 catch ; 2 finally 3 end tester = try sqrt(-1); 1 catch ; 2 finally 3 end tester = try sqrt(1); 1 catch ; 2 else 3 finally 4 end
I can't find where in the documentation this behavior is specified. https://docs.julialang.org/en/v1/base/base/#finally https://docs.julialang.org/en/v1/manual/control-flow/#finally-Clauses
The text was updated successfully, but these errors were encountered:
No branches or pull requests
From the following examples, it seems like the
finally
clause is not considered for variable assignment:I can't find where in the documentation this behavior is specified.
https://docs.julialang.org/en/v1/base/base/#finally
https://docs.julialang.org/en/v1/manual/control-flow/#finally-Clauses
The text was updated successfully, but these errors were encountered: