式の優先順位
+1 : syntax error ' 単項演算子 + は無し
2*-not!1 = 2 '単項演算子 > *
1 or 2 and 4 = 1 'and > or
・and > xor
1 and 1 xor 2 = 3
2 xor 1 and 1 = 3
・or と xor は同じ優先度・左結合
1 or 1 xor 1 = 0
1 xor 1 or 1 = 1
・== と > は同じ優先度・左結合
1 == 2 > 1 = 0
1 > 2 == 1 = 0
17そうだね プレイ済み