Currently we can do: ``` if a==b then action else anotheraction ``` or ``` if a==b then action ``` It would be good to allow: ``` if a==b then action else anotheraction ``` (we currently do this by using `case a=b of` to achieve similar results).