You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Say your app supports flag --describe that would make it to do whatever it was doing before, but also to describe the computation, it might be possible to have --detailed flag that makes description detailed. It doesn't make sense to specify --detailed without --describe, but naive implementation would result in a less clear error message
structDescribe{describe:(),detailed:bool,}
Currently you can make a better error message with guard and Describe containing two bools...
The text was updated successfully, but these errors were encountered:
Say your app supports flag
--describe
that would make it to do whatever it was doing before, but also to describe the computation, it might be possible to have--detailed
flag that makes description detailed. It doesn't make sense to specify--detailed
without--describe
, but naive implementation would result in a less clear error messageCurrently you can make a better error message with
guard
andDescribe
containing two bools...The text was updated successfully, but these errors were encountered: