Mathematica では、「または」は二重の縦棒で定義されているように見えます。https://reference.wolfram.com/language/ref/Or.htmlまたはhttps://mathematica.stackexchange.com/a/119763を参照してください。
Mathics 2.1.0 では、うまくいかないようです:
In[16]:= If[1<0 || 2<3 || 3<4, 0, 1]
Syntax::sntxf: "If[1<0 " cannot be followed by " 2<3 3<4, 0, 1]" (line 1 of "<stdin>").
一方、「または」という言葉はうまくいくようです:
In[16]:= If[1<0 or 2<3 or 3<4, 0, 1]
Out[16]= 1
||
Mathematica とMathics で使用する必要がありor
ますか、それとも間違っていますか?