val implies =
fn x y = case x of false andalso case y of false => true
| fn x y = case x of false andalso case y of true => true
| fn x y = case x of true andalso case y of false => false
| fn x y = case x of true andalso case y of true => true;
我无法编译它。我对 SML 比较陌生,所以不太了解通用语言和语法。我做错了什么?