我想创建一个这样的 if 条件:

if

 ((head(c) = 1) or (head(c) = ~1) or (head(c) = ~5) or (head(c) = ~17) or (head(c) = 0))
count +1
else..

函数头返回'a;

它给了我下一个错误:operator is not a function [tycon dismatch]运算符: bool
在表达上

问题是什么?谢谢你。

最佳答案

我认为它在 SML 中称为 orelse

关于SML - 如果条件与一些 "or",我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6169437/

10-16 07:18