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
When calling a lev routine at the top level, one can replace:
lev
value = RoutineName.call(...).outputs.value
with:
value = RoutineName[...]
if :value is an :express_output of the routine.
:value
:express_output
When calling one lev routine from inside another using #run, there is no equivalent syntax to avoid:
#run
value = run(RoutineName, ...).outputs.value
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When calling a
lev
routine at the top level, one can replace:with:
if
:value
is an:express_output
of the routine.When calling one
lev
routine from inside another using#run
, there is no equivalent syntax to avoid:The text was updated successfully, but these errors were encountered: