Use >< for xor (Paulo Mour, Iso meeting)

This commit is contained in:
Vitor Santos Costa 2009-07-23 14:31:04 -05:00
parent a1e6a2baa7
commit 22ac3ee80b
2 changed files with 2 additions and 0 deletions

View File

@ -1092,6 +1092,7 @@ static InitBinEntry InitBinTab[] = {
{"/\\", op_and},
{"\\/", op_or},
{"#", op_xor},
{"><", op_xor},
{"atan2", op_atan2},
/* C-Prolog exponentiation */
{"^", op_power},

View File

@ -402,6 +402,7 @@ static Opdef Ops[] = {
{"-", yfx, 500},
{"/\\", yfx, 500},
{"\\/", yfx, 500},
{"><", yfx, 500},
{"#", yfx, 500},
{"+", fx, 200},
{"-", fy, 200},