How can multiple conditions be specified under single if? For example, consider the following java code snippet:
if(a==1 && a>b){
//statements ;
}
How can above code be written in sml? I know that I can achieve the goal by using two if's but still if there is a method to specify in the way I want, then it will be smooth.