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
Let expressions can not be used within other expressions today. Lionel asked me to add an issue for this.
This would support use like this:
rule MyRule() → Result( [binding ]-> let #ans1 = OtherFunction(binding) let #ans2 = OtherOtherFunction(binding, #ans1) #ans2 )
Today, without this fix, such use gets an error like this:
Error: Let expression cannot occur within another expression: it must be a the top-level expression.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Let expressions can not be used within other expressions today.
Lionel asked me to add an issue for this.
This would support use like this:
Today, without this fix, such use gets an error like this:
Error: Let expression cannot occur within another expression: it must be a the top-level expression.
The text was updated successfully, but these errors were encountered: