Handling multiple effects without with
?
#618
-
I can't figure out how to handle multiple effects with If I just list the operations in There should be some way of nesting Here's what I have:
I tried nesting it like
But that's a syntax error. The reason why I don't want Full code
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Using nested handles, I think you can do this:
The |
Beta Was this translation helpful? Give feedback.
-
If you are just avoiding
|
Beta Was this translation helpful? Give feedback.
If you are just avoiding
with
due to the scoping issue, I would just create a local variable for the result, and use an indented blockThis is how I usually limit the scope of
with