I have a choose case that looks like:
- choose <[cases]>:
- case 0:
- do nothing
- case 1:
- define something
- default:
- define something else
Basically, I just want to do nothing in the case 0 and I feel really dumb not finding anything about such a command (similar to the "pass" in python).
I could also add an "if" condition either before the choose or in the default case but that would look messier.
Should I just keep going with a - define _ _ or a - wait 0t or is there another command for that kind of case?