Comment on page
Meta-Effects
Special effects with irregular behaviour, such as the ability to use other effects as parameters.
Some effects have irregular structure or behaviour. These usually provide advanced behaviour, such as taking another effect as an input and modifying it.
try[ to]: %Effect%
try to: assert false
try: run my_func()
This runs the provided effect in an implicit
try
section, ignoring any errors it produces.There is no way to obtain the error produced by it (if one was) or to check whether it passed, other than checking for the result of the effect used.
Last modified 1yr ago