Hi,
I have the following piece of code:
n = 3
case n of
3 -> "Something"
4 -> "Something"
_ -> "Other"
Is it possible to shorten the case statement into something like this?:
n = 3
case n of
3 or 4 -> "Something"
_ -> "Other"
Thanks.
-- Angel Alonso