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, ...)
Solution:
option(__.is(P.between(1, 100)) should do the trick
Jump to solution
2 Replies
Solution
gdotv
gdotv17mo ago
option(__.is(P.between(1, 100)) should do the trick
kyano_k
kyano_k17mo ago
Thank you