SML初心者です。IF ステートメント内で AND 演算子を使用するにはどうすればよいですか? これが私のコードです:
val y = 1;
val x = 2;
if (x = 1 AND y = 2) then print ("YES ") else print("NO ");
私のエラーは次のとおりです: stdIn:66.9-67.3 エラー: unbound variable or constructor: AND stdIn:66.3-67.9 Error: operator is not a function [literal] operator: int in expression: 1 stdIn:66.3-67.9 Error: operator and operand don '同意しない [リテラル] 演算子 ドメイン: bool * bool オペランド: bool * int in expression: x = (1 ) y = 2
ありがとうございました