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
finally
Support a finally branch that runs after every possible branch. Perhaps not running after else?
else
var hidden = false var opacity = 0.0 nudge-opacity = match -> up? -> opacity += 0.1 down? -> opacity -= 0.1 finally -> if opacity == 0.0: hidden = true
A return value could be handled in two ways (not sure how easy either route would be to implement):
->
finally rval -> ...
finally -> rval -> ...
This was discussed on gitter at one point and I just remembered it and wanted to get it logged.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Support a
finally
branch that runs after every possible branch. Perhaps not running afterelse
?A return value could be handled in two ways (not sure how easy either route would be to implement):
->
operator:finally rval -> ...
finally -> rval -> ...
This was discussed on gitter at one point and I just remembered it and wanted to get it logged.
The text was updated successfully, but these errors were encountered: