Option to be a range of values
Is there a way to provide an option after a choose step that includes a range of values in it?
For example,
option(1..100, ...)
2 Replies
Solution
option(__.is(P.between(1, 100)) should do the trick
Thank you