1 # The ordered choice operator (/) picks the first choice that matches
2 # Example: bp '{"cabaret"/"cab"}' matches either "cabaret" or "cab"
3 # Note: if a match occurs, the options to the right will *never* be attempted,
4 # so bp '{"cab"/"cabaret"}' will always match "cab" instead of "cabaret"