guild icon
Toit
#Early exit from a lambda
Thread channel in help
addshore
addshore 09/19/2025 08:50 AM
I tried return to exit early in one condition from a lambda,
But of course Can't explicitly return from within a lambda
Is there a way to stop execution of a lambda part way through?
floitsch
floitsch 09/20/2025 07:21 AM
I don't remember if that only works for blocks or lambdas as well but continue.<name> might work.
foo:: ... continue.foo
2 messages in total